亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

jquery自定義動畫

??? 2019-06-12 12:17:04 199
????:<!DOCTYPE html><html><head> <title>jQuery自定義動畫</title> <link rel="icon" type="image/x-icon" href="static/images/favicon.ico">  &n

<!DOCTYPE html>

<html>

<head>

<title>jQuery自定義動畫</title>

<link rel="icon" type="image/x-icon" href="static/images/favicon.ico">

    <script type="text/javascript" src="https://code.jquery.com/jquery-3.3.1.min.js"></script>

    <style type="text/css">

       *{margin:0;padding: 0; }

div{width:200px;height: 200px;background: red; position: absolute;}


</style>

</head>

<body>



<script type="text/javascript">

        $(document).ready(function(){

          $('#right').click(function(){

            $('.box1').animate({left:'+500px'},3000);

            $('.box1').animate({fontSize:'30px'},500);

          })

           $('#stop').click(function(){

            $('.box1').stop(true)

         }) 

         })

</script>


<!-- 點擊右移按鈕,div右移,點擊停止按鈕當前效果停止 -->

<button id="right">右移</button>

<button id="stop">停止</button>

<div class="box1">大家好</div>


</body>

</html>


?? ???:查無此人?? ??:2019-06-13 09:11:33
???? ??:完成的不錯。每行js和jq語句結(jié)束增加;號。繼續(xù)加油

??? ??

?? ??