jQuery背景色漸變動畫效果

admin發表於2017-11-22

使用jquery實現動畫效果非常的方便,不過並不是任何屬性都可以使用動畫來實現。

具體可以參閱jQuery的動畫效果可以應用與哪些屬性一章節。

如果要實現背景色漸變效果,可以使用query.color.js外掛。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
div{
  background-color:#bada55;
  width:100px;
  border:1px solid green;
}
</style>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script src="mytest/jQuery/jquery.color.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("#go").click(function(){
    $("#block").animate({
      backgroundColor:"#abcdef"
    },1500);
  });
  $("#sat").click(function(){
    $("#block").animate({
      backgroundColor:$.Color({saturation:0})
    },1500);
  })
})
</script>
</head>
<body>
<button id="go">Simple</button>
<button id="sat">Desaturate</button>
<div id="block">螞蟻部落歡迎您</div>
</body>
</html>

上面的程式碼實現了我們的要求,能夠實現背景色的動畫漸變效果。

更多內容可以參閱https://github.com/jquery/jquery-color。

相關文章