jQuery UI API - 滑動特效(Slide Effect)
所屬類別
用法
描述:把元素滑動出視區(qū)。
slide
參數(shù) | 類型 | 描述 | 默認(rèn)值 |
---|---|---|---|
direction | String | 特效的方向??赡艿闹担?left"、"right"、"up"、"down"。 | "both" |
distance | Number | 特效的距離。默認(rèn)為元素的高度(height)還是寬度(width)取決于 direction 參數(shù)??梢栽O(shè)置為小于元素的寬度(width)/高度(height)的任意整數(shù)。 | 元素的 outerWidth |
實例
使用滑動特效(Slide Effect)切換一個 div。
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>滑動特效(Slide Effect)演示</title> <link rel="stylesheet" rel="external nofollow" target="_blank" > <style> #toggle { width: 100px; height: 100px; background: #ccc; } </style> <script src="http://code.jquery.com/jquery-1.10.2.js" rel="external nofollow" ></script> <script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js" rel="external nofollow" ></script> </head> <body> <p>點擊任意地方進(jìn)行切換。</p> <div id="toggle"></div> <script> $( document ).click(function() { $( "#toggle" ).toggle( "slide" ); }); </script> </body> </html>
更多建議: