jQuery简单动画实例2--小米展示栏拉伸

主要应用:hover()、animate()

图片更换的时候需要注意盒子宽高

鼠标移进和移出效果图:

 

源码:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>js动画案例2--小米</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        ul {
            position: absolute;
            display: flex;
            width: 1350px;
            height: 400px;
            margin-left: 100px;
            margin-top: 100px;
            border: 1px solid red;


        }

        ul li {
            list-style: none;
            width: 270px;
            overflow: hidden;
        }
    </style>
</head>
<script src="./js/jquery-3.6.0.js"></script>

<body>

    <ul>
        <li class="l1">
            <img src="./素材1/images/1.jpg" alt="#"></li>
        <li class="l2">
            <img src="./素材1/images/2.jpg" alt="#"></li>
        <li class="l3">
            <img src="./素材1/images/3.jpg" alt="#"></li>
        <li class="l4">
            <img src="./素材1/images/4.jpg" alt="#"></li>
        <li class="l5">
            <img src="./素材1/images/5.jpg" alt="#"></li>
    </ul>

    <script>
        $(".l1").hover(
            function () {
                $('.l1').stop().animate({
                    "width": 8000
                }, 30, "linear")
            },
            function () {
                $('.l1').stop().animate({
                    "width": 270
                }, 30, "linear")

            })

        $(".l2").hover(
            function () {
                $('.l2').stop().animate({
                    "width": 8000
                }, 30, "linear")
            },
            function () {
                $('.l2').stop().animate({
                    "width": 270
                }, 30, "linear")

            })

        $(".l3").hover(
            function () {
                $('.l3').stop().animate({
                    "width": 8000
                }, 30, "linear")
            },
            function () {
                $('.l3').stop().animate({
                    "width": 270
                }, 30, "linear")

            })

        $(".l4").hover(
            function () {
                $('.l4').stop().animate({
                    "width": 8000
                }, 30, "linear")
            },
            function () {
                $('.l4').stop().animate({
                    "width": 270
                }, 30, "linear")

            })
        $(".l5").hover(
            function () {
                $('.l5').stop().animate({
                    "width": 8000
                }, 30, "linear")
            },
            function () {
                $('.l5').stop().animate({
                    "width": 270
                }, 30, "linear")

            })
    </script>
</body>

</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值