• 关于点击按钮图片左右切换的随笔


     1 $(function(){
     2 /*
     3       #imgLeft 向左移动图标
     4       #imgRight 向右移动图标
     5       #box 装载图片的容器
     6       .animate({left:"向左移动距离(记得加px加引号)"},移动速度);
     7     */
     8 $('#imgLeft').click(function(){
     9    $('#box').animate({left:"0px"},1000);
    10    $('#imgRight').attr("src","Iamges/right.png");
    11    $('#imgLeft').attr("src","Iamges/left2.png");
    12   })
    13    $('#imgRight').click(function(){
    14    $('#box').animate({left:"-964px"},1000);
    15    $('#imgRight').attr("src","Iamges/right2.png");
    16    $('#imgLeft').attr("src","Iamges/left.png");
    17   })
    18 }) 
    View Code
    #middle  //装载图片容器的div
    {
        position: relative; 
         967px;
        height: 417px;
        margin: 0 auto;
        overflow:hidden; //记得要把超出的宽度隐藏起来
    }
    #box{
     1934px;
     height:417px;
     position:absolute; //要把容器设为absolute
     top:0px;
     left:0px;
    }
    #box .page{
    
    float:left;   //将图片向左浮动
    967px;
    height:417px;
    border:none;
    }
    View Code

     详细点的,可以参考http://www.cnblogs.com/wenson/p/3341074.html

  • 相关阅读:
    Python方法
    Cpp求PI
    Asp.net身份验证和授权
    [转] 魔兽系列事件报道
    directxsdk aug 2006
    [转]转变的开始!NVIDIA更换新Logo
    wxWidgets 2.7.0 released
    OpenGL 和 Vista(续)
    暴雪员工的跳槽纪录
    3D版的星际争霸
  • 原文地址:https://www.cnblogs.com/banyan-rong/p/3628757.html
Copyright © 2020-2023  润新知