页面悬浮窗(点击展开或者收缩)

html代码:

1 <div class="switch">
2     <dl class="clearFix">
3         <dt class="fl">
4             点我试试
5         </dt>
6             <dd class="fl">
7             </dd>
8     </dl>
9 </div>

css代码:

1 .switch{position:absolute;right:0;top:100px;height:400px;overflow: hidden;cursor: pointer;}
2 .switch dt{width: 30px;padding:100px 10px;height: 200px;text-align:center;font-size: 20px;color: #fff;background: #45b035;}
3 .switch dd{width: 0px;height: 400px;background: url(img01/11.jpg);}

js代码:

<script type="text/javascript">
    $("dt").on("click",function(){
        Switch(".switch dd");                        
    })
    function Switch(Obj){
        if($(Obj).width()==0){
            $(Obj).animate({
                width:"400px"
            },1000);
        }else{
            $(Obj).animate({
                width:"0px"
            },1000);
        }
    }
</script>

效果如下:

 

转载于:https://www.cnblogs.com/rain92/p/5587711.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值