评论

收藏

[jQuery] jq练习 手风琴效果2

开发技术 开发技术 发布于:2021-07-10 14:46 | 阅读数:545 | 评论:0

DSC0000.png

  图片分辨率 560*300
  <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>练习 手风琴效果2</title>
    <style>
              *{
    margin:0;
    padding:0;
    list-style:none;}
    #contend{
    height:300px;
    width:680px;
    margin:0 auto;
    margin-top:200px;}
    .pic-box{
    width:2000px;}
    .pic-show{
float:left;
    width:30px;
    height:300px;
    overflow:hidden;
   }
    .pic-show img{

    text-align:right;
     padding-left:30px;
    }


    </style>
     <script src="js/jquery-3.3.1.js"></script>
</head>
<body>
<div id="outer">
     <div id="contend">
         <div class="pic-box">
             <div class="pic-show" style=" width:590px; background-color:green"><img src="images2/1.jpg"/></div>
                <div class="pic-show" style="background-color:orange"><img src="images2/2.jpg"/></div>
                <div class="pic-show" style="background-color:lightblue"><img src="images2/3.jpg"/></div>
                <div class="pic-show"  style="background-color:pink"><img src="images2/4.jpg"/></div>
            </div>
        </div>
    </div>
    


   
    <script>
$(document).ready(function(e) {
           $(".pic-show").hover(function(){
    console.log("inhover");
    $(this).stop().animate({width:"590px"},500).siblings().stop().animate({width:"30px"},500);
    },function(){
    
    });
        });
    </script>
</body>
</html>


  
关注下面的标签,发现更多相似文章