加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index2.html 887 Bytes
一键复制 编辑 原始数据 按行查看 历史
蒋慕思 提交于 2020-12-01 13:31 . change url
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS3全屏背景图片缩小渐变代码 </title>
<link rel="stylesheet" href="css/slidebg.css" type="text/css"/>
<style type="text/css">
body{
background-image: url(img/man1.jpg);
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body>
<!-- <div class="slideshow">
<div class="slideshow-image" style="background-image: url('img/1.jpg')"></div>
<div class="slideshow-image" style="background-image: url('img/2.jpg')"></div>
<div class="slideshow-image" style="background-image: url('img/3.jpg')"></div>
<div class="slideshow-image" style="background-image: url('img/4.jpg')"></div>
</div> -->
<script type="module">
import APlayer from './js/APlayer.min.js';
console.log(APlayer);
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化