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

jquery自定義動(dòng)畫(huà)

Original 2019-06-12 12:17:04 199
abstract:<!DOCTYPE html><html><head> <title>jQuery自定義動(dòng)畫(huà)</title> <link rel="icon" type="image/x-icon" href="static/images/favicon.ico">  &n

<!DOCTYPE html>

<html>

<head>

<title>jQuery自定義動(dòng)畫(huà)</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>


<!-- 點(diǎn)擊右移按鈕,div右移,點(diǎn)擊停止按鈕當(dāng)前效果停止 -->

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

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

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


</body>

</html>


Correcting teacher:查無(wú)此人Correction time:2019-06-13 09:11:33
Teacher's summary:完成的不錯(cuò)。每行js和jq語(yǔ)句結(jié)束增加;號(hào)。繼續(xù)加油

Release Notes

Popular Entries