Latest web development tutorials

jQuery UI API - Landing effects (Drop Effect)

category

Special effects (Effects)

usage

Description: Landing effects (Drop Effect) through a single direction of the slide fade out to hide or show a light element.

drop

参数 类型 描述 默认值
direction String 隐藏元素时元素降落的方向,显示元素时元素出现的方向。
可能的值:up、down、left、right。
"left"

Examples

Land use effects (Blind Effect) switching a div.

<! Doctype html>
<Html lang = "en">
<Head>
  <Meta charset = "utf-8">
  <Title> Landing effects (Drop Effect) Demo </ title>
  <Link rel = "stylesheet" href = "// code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
  <Style>
  #toggle {
    width: 100px;
    height: 100px;
    background: #ccc;
  }
  </ Style>
  <Script src = "// code.jquery.com/jquery-1.10.2.js"> </ script>
  <Script src = "// code.jquery.com/ui/1.10.4/jquery-ui.js"> </ script>
</ Head>
<Body>
 
<P> Click anywhere to switch. </ P>
<Div id = "toggle"> </ div>
 
<Script>
$ (Document) .click (function () {
  $ ( "#toggle") .toggle ( "Drop");
});
</ Script>
 
</ Body>
</ Html>