1. 程式人生 > 實用技巧 >jquery後續動畫

jquery後續動畫

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title></title>

        <script src="jquery-3.5.1.min.js" type="text/javascript" charset="utf-8"></script>

        <script type="text/javascript">
            //
入口函式 $(document).ready(function() { var jqDown = $("#down"); var jqUp = $("#up"); var jqStop = $("#stop"); var jqDiv = $("div"); jqDown.click(function() { jqDiv.slideDown(2000); }) jqUp.click(
function() { jqDiv.slideUp(2000); }) jqStop.click(function() { // 後續動畫不執行,立即執行當前動畫 jqDiv.stop(true, false); }) }); </script> <style type="text/css"> div { height: 100px; width: 100px; background
-color: aqua; margin: 10px; } </style> </head> <body> <input type="button" name="" id="down" value="滑入" /> <input type="button" name="" id="up" value="滑出" /> <input type="button" name="" id="stop" value="停止" /> <div id=""> </div> </body> </html>