如何使用animate(),隐藏和显示元素?

使用hide()show()方法animate()来隐藏和显示元素。

示例

您可以尝试运行以下代码,以了解如何使用animate()方法来隐藏和显示元素:

<!DOCTYPE html>

<html>

<head>

<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>

<script>

$(document).ready(function(){

    $("#btn1").click(function(){

        $("#box").animate({height: "300px"}, 500, function() {

           $(this).hide();

        });

    });

   $("#btn2").click(function(){

        $("#box").animate({height: "300px"}, 500, function() {

           $(this).show();

        });

    });

});

</script>

</head>

<body>

<button id="btn1">Hide</button>

<button id="btn2">Show</button>

<div id="box" style="background:#000000;height:300px;width:100px;margin:10px;"></div>

</body>

</html>

以上是 如何使用animate(),隐藏和显示元素? 的全部内容, 来源链接: utcz.com/z/327062.html

回到顶部