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

重要理解stop后面的兩個(gè)參數(shù)作用

原創(chuàng) 2018-11-19 03:27:14 241
摘要:<!DOCTYPE html><html><head>  <title></title>  <script type="text/javascript" src="jquery-3.3.1.js"></script><style type="

<!DOCTYPE html>

<html>

<head>

  <title></title>

  <script type="text/javascript" src="jquery-3.3.1.js"></script>

<style type="text/css">

.box1{

  height: 200px;

  width:200px;

  background:blue;

  position: absolute;

}

</style>

<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)//默認(rèn)false  停止后字體繼續(xù)放大,true時(shí)不放大

  })

})

</script>

</head>

<body>

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

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

<div class='box1'>php中文網(wǎng)</div>

</body>

</html>


發(fā)佈手記

熱門(mén)詞條