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

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

Original 2018-11-19 03:27:26 246
abstrakt:<!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時不放大
  })
})
</script>
</head>
<body>
<button id='right'>右移</button>
<button id='stop'>停止</button>
<div class='box1'>php中文網(wǎng)</div>
</body>
</html>


Korrigierender Lehrer:韋小寶Korrekturzeit:2018-11-19 09:16:27
Zusammenfassung des Lehrers:不錯!但是缺少總結(jié)!代碼缺少高亮!下次記得帶上哦!

Versionshinweise

Beliebte Eintr?ge