Blogger Information
Blog 17
fans 1
comment 1
visits 16376
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
简单轮播图
雷国恩的博客
Original
1340 people have browsed it

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>

	<style type="text/css">
	   div {
           width:500px;height:300px;margin:50px auto;
           overflow: hidden;
           position:relative;
        }
        img{
          width:100%;height:100%;
        }
        p{
          color:#fff;
          width:500px;height:30px;
          position:absolute;z-index:1000;
          bottom:0;left:0;
          text-align:center;
          line-height: 30px;
        }

        p span{
          display:inline-block;
          width:20px;
          height:20px;
          line-height:20px;
          text-align:center;
          background:rgba(254,254,254,0.3);
          border-radius: 50%;
          cursor:pointer;
        }
        p span:hover{
          background:red;
        }
	</style>
</head>
<body>
     <div id="photo">
           <a href=""><img src="static/images/1.jpg"></a>
          <a href=""><img src="static/images/2.jpg"></a>
          <a href=""><img src="static/images/3.jpg"></a>
          <a href=""><img src="static/images/4.jpg"></a>
          <a href=""><img src="static/images/5.jpg"></a>
          <p>
              <span onclick="change(0)">1</span>
               <span onclick="change(1)">2</span>
               <span onclick="change(2)">3</span>
               <span onclick="change(3)">4</span>
               <span onclick="change(4)">5</span> 
          </p>
          
     </div>
    
     <script type="text/javascript">
          function change(num){
               var obj=document.getElementById('photo');
               var obj_a=obj.getElementsByTagName('a');
               for(var i=0;i<obj_a.length;i++){
                    obj_a[i].style.display="none";
               }
               obj_a[num].style.display="block";
          }
          

     </script>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!