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ò)了吧