zoukankan      html  css  js  c++  java
  • jquery roundabout幻灯片插件3d图片切换支持图片旋转切换滚动

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>jquery-roundabout</title> 
    
    <style type="text/css"> 
    *{margin:0;padding:0;list-style-type:none;}
    a,img{border:0;}
    body{font:12px/180% Arial, Helvetica, sans-serif, "新宋体";background:#ddd;}
    /* roundabout */
    .roundabout-holder{850px;height:496px;margin:0 auto;}
    .roundabout-moveable-item{646px;height:416px;cursor:pointer;border:3px solid #ccc;border:3px solid rgba(0, 0, 0, 0.08);border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;}
    .roundabout-moveable-item img{100%;}
    .roundabout-in-focus{border:3px solid rgba(0, 0, 0, 0.2);}
    </style> 
    
    </head> 
    <body> 
    
        <ul class="roundabout" id="myroundabout"> 
            <li><img src="img/slide1.jpg"></li> 
            <li><img src="img/slide2.jpg"></li> 
            <li><img src="img/slide3.jpg"></li> 
            <li><img src="img/slide4.jpg"></li> 
            <li><img src="img/slide5.jpg"></li> 
        </ul>
    
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> 
    <script type="text/javascript" src="jquery.roundabout.js"></script> 
    <script type="text/javascript" src="jquery.roundabout-shapes.js"> </SCRIPT>
    <script type="text/javascript"> 
    $(document).ready(function() {
        $('#myroundabout').roundabout({
            autoplay: true,//自动播放
            autoplayDuration: 3000,//时间
            autoplayPauseOnHover: true,//自动鼠标移上停滞
            shape: 'figure8',  //支持属性theJuggler、figure8、waterWheel、square、conveyorBeltLeft、conveyorBeltRight、goodbyeCruelWorld、diagonalRingLeft、diagonalRingRight、rollerCoaster、tearDrop、tickingClock、flurry、nowSlide、risingEssence随便换 
            minOpacity: 1
        });
    });
    </script>    
        
    </body> 
    </html> 
  • 相关阅读:
    UVALive 6909 Kevin's Problem 数学排列组合
    UVALive 6908 Electric Bike dp
    UVALive 6907 Body Building tarjan
    UVALive 6906 Cluster Analysis 并查集
    八月微博
    hdu 5784 How Many Triangles 计算几何,平面有多少个锐角三角形
    hdu 5792 World is Exploding 树状数组
    hdu 5791 Two dp
    hdu 5787 K-wolf Number 数位dp
    hdu 5783 Divide the Sequence 贪心
  • 原文地址:https://www.cnblogs.com/xinlinux/p/4545347.html
Copyright © 2011-2022 走看看