jQuery侧边栏小广告效果代码

// 这是基本样式
    * {
        margin: 0;
        padding: 0;
    }

    .box {
        width: 200px;
        height: 40px;
        /* background-color: greenyellow; */
        position: absolute;
        right: 0;
        bottom: 100px;
        overflow: hidden;
    }

    .box1 {
        position: absolute;
        top: 0;
        left: 200px;
        width: 200px;
        height: 40px;
        background-color: hotpink;
        text-align: center;
        line-height: 40px;
        z-index: 100;
    }

    .box2 {
        width: 50px;
        height: 40px;
        background-color: orange;
        position: absolute;
        top: 0;
        left: 150px;
        text-align: center;
        line-height: 40px;
    }
    <body>  
    <div class="box">
        <div class="box1">联系QQ : 1303574731</div>
        <div class="box2">广告</div>
    </div>
    <script src="../../jquery-1.8.3/jquery.min.js"></script>
    // js代码
    <script>
        $(function () {
            // 给盒子添加鼠标经过事件
            $('.box').mouseenter(function () {
                // 经过之后给盒子添加动画  让它left值走到0  用时0.6秒 
                $('.box1').stop().animate({ left: '0' }, 600);
            })
            // 离开事件  离开之后让它回到原来的位置   也就是绝对定位在页面外的位置(初始位置)
            $('.box').mouseleave(function () {
                $('.box1').stop().animate({ left: '200px' }, 600);
            })
        })
    </script>
</body>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值