jquery 动画函数用法 ,老师我提高的,帮我审核通过下,谢谢

Original 2018-12-16 14:47:27 123
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中文网</p>

<button class="btn">动画</button>

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

<script type="text/javascript">

$(document).ready(function () {

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

$('p').animate({

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

},1500)

})

})

</script>

</body>

</html>

老师帮我审核通过下,谢谢,有问题我会提问的。

Release Notes

Popular Entries