<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script src="js/jquery-3.4.0.min.js" type="text/javascript"></script>
</head>
<body>
<script type="text/javascript">
//放入javascript代码或者jQuery代码
//文档就绪函数
$(document).ready(function() {
$("#bt1").click(
function(){
$("p").animate({fontSize:'90px'},3000);
}
);
$("#bt2").click(
function(){
$("p").stop();
}
);
});
</script>
<button id="bt1">点击放大</button>
<button id="bt2">点击停止</button>
<p>我是字体</p>
</body>
</html>