jQuery UI 提供了一系列特效(Effect)来为元素添加动画效果。以下是一个简单的例子,演示如何使用 jQuery UI 的特效:

首先,确保你已经包含了 jQuery 和 jQuery UI 的库。你可以在头部添加如下代码:
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Effect Example</title>
  <!-- 引入 jQuery 和 jQuery UI 的库 -->
  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
  <script src="https://code.jquery.com/jquery-3.6.4.js"></script>
  <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>

<!-- 创建一个 div 作为特效容器 -->
<div id="effect-container" style="width: 100px; height: 100px; background-color: #3498db;"></div>

<button id="runEffect">运行特效</button>

<script>
  // 使用 jQuery UI 的特效
  $(function() {
    // 定义特效的配置
    var options = {
      duration: 1000, // 动画持续时间,单位是毫秒
      easing: "swing", // 缓动效果,可以是 "swing" 或 "linear"
    };

    // 在按钮点击时运行特效
    $("#runEffect").on("click", function() {
      // 使用特效
      $("#effect-container").toggle("explode", options);
    });
  });
</script>

</body>
</html>

在这个例子中,我们创建了一个 div 作为特效容器(id 为 "effect-container"),并创建了一个按钮(id 为 "runEffect")。点击按钮时,将运行一个特效,这里使用的是 "explode" 特效,它会让元素像爆炸一样消失。你可以根据实际需求选择其他特效,并调整特效的配置参数。


转载请注明出处:http://www.zyzy.cn/article/detail/13072/jQuery UI