JqueryUI - 彩色动画


jQueryUI 扩展了一些核心 jQuery 方法,以便您可以为元素设置不同的过渡动画。其中之一是动画方法。jQueryUI 扩展了 jQuery animate方法,添加了对动画颜色的支持。您可以对定义元素颜色的多个 CSS 属性之一进行动画处理。以下是animate方法支持的 CSS 属性。

  • backgroundColor - 设置元素的背景颜色。

  • borderTopColor - 设置元素边框顶部的颜色。

  • borderBottomColor - 设置元素边框底边的颜色。

  • borderLeftColor - 设置元素边框左侧的颜色。

  • borderRightColor - 设置元素边框右侧的颜色。

  • color - 设置元素的文本颜色。

  • profileColor - 设置轮廓的颜色;用于强调该元素。

句法

以下是 jQueryUI animate方法的语法 -

$( "#selector" ).animate(
   { backgroundColor: "black",
      color: "white"
   }
);

您可以在此方法中设置任意数量的属性,以,(逗号)分隔。

例子

以下示例演示了addClass()方法的使用。

<!DOCTYPE html>
<html>
   <head>
      <meta charset = "utf-8">
      <title>jQuery UI addClass Example</title>
      <link href = "https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css"
         rel = "stylesheet">
      <script src = "https://code.jquery.com/jquery-1.10.2.js"></script>
      <script src = "https://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
      
      <style>
         .elemClass {
            width: 200px;
            height: 50px;
            background-color: #b9cd6d;
         }
         .myClass {
            font-size: 40px; background-color: #ccc; color: white;
         }
      </style>
      
      <script type = "text/javascript">
         $(document).ready(function() {
            $('#button-1').click(function() {
               $('#animTarget').animate({
                  backgroundColor: "black",
                  color: "white"
               })
            })
         });
      </script>
   </head>
   
   <body>
      <div id = animTarget class = "elemClass">
         Hello!
      </div>
      <button id = "button-1">Click Me</button>
   </body>
</html>

让我们将上面的代码保存在 HTML 文件animateexample.htm中,并在支持 javascript 的标准浏览器中打开它,您还必须看到以下输出。现在,您可以使用结果 -

单击该按钮并查看该框的动画如何变化。