首页 > Web开发 > 详细

jquery动态改变背景颜色插件

时间:2014-07-12 19:08:49      阅读:362      评论:0      收藏:0      [点我收藏+]

GETHUB下载地址


背景颜色用animate方法时时无法改变颜色的

所以要使用插件进行补充。



使用方法:

<!DOCTYPE html>
<html>
<head>
<style>
div {
    background-color: #bada55;
    width: 100px;
    border: 1px solid green;
}
</style>
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="jquery.color.min.js"></script>
</head>
<body>
<button id="go">Simple</button>
<button id="sat">Desaturate</button>
<div id="block">Hello!</div>
<script>
jQuery("#go").click(function(){
    jQuery("#block").animate({
            backgroundColor: "#abcdef"
    }, 1500 );
});
jQuery("#sat").click(function(){
    jQuery("#block").animate({
            backgroundColor: jQuery.Color({ saturation: 0 })
    }, 1500 );
});
</script>
</body>
</html>





jquery动态改变背景颜色插件,布布扣,bubuko.com

jquery动态改变背景颜色插件

原文:http://blog.csdn.net/huileiforever/article/details/37724043

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!