美文网首页
插件之改变背景色

插件之改变背景色

作者: 琪33 | 来源:发表于2018-04-30 11:11 被阅读0次
<style>
        div {
            width: 100px;
            height: 100px;
            background-color: black;
        }
    </style>
    <script src="jquery-1.11.1.js"></script>
    <script src="jquery.color.js"></script>
    <script>
        $(function () {
            //获取按钮,改变盒子的背景色;
            $("button").on("click", function () {
                $("div").animate({"width":200,"background-color":"red"},2000, function () {
                    alert("动画结束");
                });
            });
        })
    </script>
</head>
<body>
<button>变色</button>
<div></div>
</body>

相关文章

网友评论

      本文标题:插件之改变背景色

      本文链接:https://www.haomeiwen.com/subject/piszlftx.html