国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

jquery animate stop的用法 老師,幫忙審核通過(guò)下,有問(wèn)題我會(huì)問(wèn)的。

Original 2018-12-16 15:01:22 129
abstract:<!DOCTYPE html><html><head> <title></title> <script type="text/javascript" src="jquery-3.3.1.min.js"></script> <style type="text/c

<!DOCTYPE html>

<html>

<head>

<title></title>

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

<style type="text/css">

.box{color: red;}

.main{font-size: 40px;font-weight: bold;}

</style>

</head>

<body>

<p title="ok">php中文網(wǎng)</p>

<button class="btn">開始動(dòng)畫</button>

<button id="btn2">結(jié)束動(dòng)畫</button>

<input type="text" id="mm">

<script type="text/javascript">

$(document).ready(function () {

$('.btn').click(function(){

$('p').animate({

fontSize:'40px',fontWeight:'bold'

},5500)


})

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

$('p').stop(false,true)

})

})

</script>

</body>

</html>


Correcting teacher:天蓬老師Correction time:2018-12-16 15:13:11
Teacher's summary:你是在重復(fù)提交嗎? 這個(gè)作業(yè)你交過(guò)了吧

Release Notes

Popular Entries