jQuery常用的動畫函式簡單介紹

antzone發表於2017-03-24

使用jQuery的一大優點就是可以非常的方便的實現動畫效果,原來在原生的javascript中需要大量程式碼才能實現的效果,使用jquery則之用簡單呼叫響應的函式就可以實現,下面就羅列一下jquery中常用的動畫函式。

列表如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html> <html> 
<head> 
<meta charset=" utf-8"> 
<meta name="author" content="http://www.softwhy.com/" /> 
<title>螞蟻部落</title> 
<style type="text/css">
#antzone{
  width:200px;
  background:green;
  height:100px;
  text-align:center;
}
.thecolor{color:red}
</style>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("#bt").click(function(){
    $("#antzone").toggleClass("thecolor");
  })
})
</script>
</head>
<body>
<div id="antzone">螞蟻部落</div>
<input type="button" id="bt" value="檢視效果"/>
</body>
</html>

上面的程式碼實現了我們的要求,使用toggleClass()即可實現此功能。

相關文章