jQuery-淡入淡出动画效果

你说的曾经没有我的故事 提交于 2019-11-29 06:45:11
<!DOCTYPE html>
<html lang="zh">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        h1 {
            /* display: none; */
            background-color: #f00;
        }
    </style>
</head>

<body>


    <p><button type="button">淡入淡出</button></p>
    <h1>Hello Animation</h1>
    <h1>Hello Animation</h1>
    <h1>Hello Animation</h1>

    <script src="./jquery.js"></script>
    <script>

        $('button[type="button"]').click(function () {
            
            // 淡入效果
            // $('h1').fadeIn(10 * 1000, 'linear', function() {
            //     console.log('动画执行完毕')
            // })
            // 淡出效果
            // $('h1').fadeOut(10 * 1000, 'linear', function() {
            //     console.log('动画执行完毕')
            // })
            // 淡入淡出切换
            // $('h1').fadeToggle(10 * 1000, 'linear', function() {
            //     console.log('动画执行完毕')
            // })
            // 不透明度变到原来的一半
            $('h1').fadeTo(10 * 1000, 0.5, 'linear', function() {
                console.log('动画执行完毕')
            })
        })

    </script>
</body>

</html>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!