HTML

 <div class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext">1 / 3</div>
<img src="https://c.runoob.com/wp-content/uploads/2017/01/img_mountains_wide.jpg" style="width:100%">
<div class="text">文本 1</div>
</div> <div class="mySlides fade">
<div class="numbertext">2 / 3</div>
<img src="https://c.runoob.com/wp-content/uploads/2017/01/img_fjords_wide.jpg" style="width:100%">
<div class="text">文本 2</div>
</div> <div class="mySlides fade">
<div class="numbertext">3 / 3</div>
<img src="https://c.runoob.com/wp-content/uploads/2017/01/img_nature_wide.jpg" style="width:100%">
<div class="text">文本 3</div>
</div> </div>
<br> <div style="text-align:center">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</div>

css

 * {box-sizing:border-box}
body {font-family: Verdana,sans-serif;}
.mySlides {display:none}
/* 幻灯片容器 */
.slideshow-container {
max-width: 1000px;
position: relative;
margin: auto;
} /* 下一张 & 上一张 按钮 */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
padding: 16px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
} /* 定位 "下一张" 按钮靠右 */
.next {
right:;
border-radius: 3px 0 0 3px;
} /* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
background-color: rgba(0,0,0,0.8);
} /* 标题文本 */
.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
} /* 数字文本 (1/3 等) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top:;
} /* 标记符号 */
.dot {
cursor:pointer;
height: 13px;
width: 13px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
} .active, .dot:hover {
background-color: #717171;
} /* 淡出动画 */
.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 1.5s;
animation-name: fade;
animation-duration: 1.5s;
} @-webkit-keyframes fade {
from {opacity: .4}
to {opacity:}
} @keyframes fade {
from {opacity: .4}
to {opacity:}
}

JS

 var slideIndex = 0;
showSlides(); function showSlides() {
var i;
var slides = document.getElementsByClassName("mySlides");
var dots = document.getElementsByClassName("dot");
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
slideIndex++;
if (slideIndex > slides.length) {slideIndex = 1}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
setTimeout(showSlides, 2000); // 切换时间为 2 秒
}

最新文章

  1. [转]html5表单上传控件Files API
  2. 简单生成svg文件
  3. SQL行转列+动态拼接SQL
  4. PyQt4自定义事件
  5. [转载]寻找两个有序数组中的第K个数或者中位数
  6. cpio备份命令
  7. hiho欧拉路&#183;二 --------- Fleury算法求欧拉路径
  8. Appium原理
  9. merge into 语法缺陷
  10. struts2标签自动错行、换行问题
  11. javascript中的动画的实现以及运动框架的编写(1)
  12. UVA 10341 Solve It 解方程 二分查找+精度
  13. jqGrid Demos
  14. Ionic3 创建应用(Android)
  15. [bzoj3668][Noi2014]起床困难综合症/[洛谷3613]睡觉困难综合症
  16. 如何将Excel转换成Markdown表格[转]
  17. 20190402Linux进阶命令week1.2
  18. VScode 好用插件集合(一)
  19. Vue + Element UI 实现权限管理系统 前端篇(二):Vue + Element 案例
  20. 在 Azure 中的 Windows 虚拟机上使用 SSL 证书保护 IIS Web 服务器

热门文章

  1. sublime配置python
  2. X的追求道路
  3. Centos7 ssh免密码登陆
  4. 2015北京网络赛 D-The Celebration of Rabbits 动归+FWT
  5. 轻松掌握Ubuntu Linux的3D桌面快捷键使用
  6. stylus中文版参考文档之综述
  7. 库:IO读写操作
  8. 紫书 例题 9-2 UVa 437 ( DAG的动态规划)
  9. 【Henu ACM Round#16 A】 Bear and Game
  10. CSUOJ 1555 Inversion Sequence