Jquery UI教程

jQuery UI Animation

jQuery UI在核心jQuery中添加了一些方法来扩展动画功能。您可以为元素设置不同的过渡动画。 jQuery UI也支持动画颜色。在这里,您可以为一个或多个定义元素颜色的CSS属性设置动画。
以下是支持动画方法的CSS属性列表。
backgroundColor: 它用于设置元素的背景色。 borderTopColor: 用于设置元素边框顶侧的颜色。 borderBottomColor: 用于设置元素边框底侧的颜色。 borderLeftColor: 用于设置元素边框左侧的颜色。 borderRightColor: 用于设置元素边框右侧的颜色。 color: 它用于设置元素的文本颜色。 outlineColor: 用于设置轮廓的颜色。用来强调元素。
jQuery UI动画方法的语法:
$( "#selector").animate(
   { backgroundColor: "black",
      color: "white"
   }
);
注意: 如果要在此方法中添加多个属性,则必须用逗号将它们分开。

jQueryUI彩色动画示例

让我们以使用addClass()方法演示颜色动画方法为例。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>jQuery UI addClass Example</title>
<link href="http://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css" rel="stylesheet">
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://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: "red",
color: "white"
})
 })
});
</script>
</head>
<body>
<div id=animTarget class="elemClass">
Hello lidihuo </div>
<button id="button-1">Click Me</button>
</body>
</html>

使用切换的jQuery UI颜色动画

让我们以使用切换效果来演示颜色动画方法为例:
<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>jQuery UI Effects - Animate demo</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
  <script src="//code.jquery.com/jquery-1.10.2.js"></script>
  <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
  <link rel="stylesheet" href="/resources/demos/style.css">
  <style>
    .toggler { width: 500px; height: 200px; position: relative; }
    #button { padding: .5em 1em; text-decoration: none; }
    #effect { width: 240px; height: 135px; padding: 0.4em; position: relative; background: #fff; }
    #effect h3 { margin: 0; padding: 0.4em; text-align: center; }
  </style>
  <script>
  $(function() {
    var state = true;
    $( "#button").click(function() {
      if ( state ) {
        $( "#effect").animate({
          backgroundColor: "#aa0000",
          color: "#fff",
          width: 500
        }, 1000 );
      } else {
        $( "#effect").animate({
          backgroundColor: "#fff",
          color: "#000",
          width: 240
        }, 1000 );
      }
      state = !state;
    });
  });
  </script>
</head>
<body>
<div class="toggler">
  <div id="effect" class="ui-widget-content ui-corner-all">
    <h3 class="ui-widget-header ui-corner-all">Animate</h3>
    <p>
   jQuery is a fast, small, cross-platform and feature-rich JavaScript library. It is designed to simplify the client-side scripting of HTML.
</p>
</div>
</div>
<button id="button" class="ui-state-default ui-corner-all">Toggle Effect</button>
</body>
</html>
昵称: 邮箱:
Copyright © 2022 立地货 All Rights Reserved.
备案号:京ICP备14037608号-4