jQuery UI --Effects

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery UI --Effects相关的知识,希望对你有一定的参考价值。

【.hide()】

.hide( effect [, options ] [, duration ] [, complete ] )

  

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>hide demo</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
  <style>
  div {
    width: 100px;
    height: 100px;
    background: #ccc;
    border: 1px solid #000;
  }
  </style>
  <script src="//code.jquery.com/jquery-1.12.4.js"></script>
  <script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
 
<button>hide the div</button>
<div></div>
 
<script>
  $( "button" ).click(function() {
    $( "div" ).hide( "drop", { direction: "down" }, "slow" );
  });
</script>
 
</body>
</html>

 【.show()】

.show( effect [, options ] [, duration ] [, complete ] )

    

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>show demo</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
  <style>
  div {
    display: none;
    width: 100px;
    height: 100px;
    background: #ccc;
    border: 1px solid #000;
  }
  </style>
  <script src="//code.jquery.com/jquery-1.12.4.js"></script>
  <script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
 
<button>show the div</button>
<div></div>
 
<script>
  $( "button" ).click(function() {
    $( "div" ).show( "fold", 1000 );
  });
</script>
 
</body>
</html>

 

【.toggle()】

.toggle( effect [, options ] [, duration ] [, complete ] )

 

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>toggle demo</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
  <style>
    div {
      width: 100px;
      height: 100px;
      background: #ccc;
      border: 1px solid #000;
    }
  </style>
  <script src="//code.jquery.com/jquery-1.12.4.js"></script>
  <script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
 
<button>toggle the div</button>
<div></div>
 
<script>
    $( "button" ).click(function() {
      $( "div" ).toggle( "fold", 1000 );
    });
</script>
 
</body>
</html>

 

以上是关于jQuery UI --Effects的主要内容,如果未能解决你的问题,请参考以下文章

jquery-ui-timepicker怎么用

前端(jQuery UI)-- jQuery UI下载与使用

是否可以在 jquery 函数中为 JQuery UI 工具提示设置不同的 UI 主题

jQuery-UI 自动完成不会显示在 jQuery-UI 对话框中

jquery-ui.css 和 jquery-ui.css 有啥区别?s2j=3.3.1 [重复]

通过Infrastics点燃jQuery的UI