小兔网

所属类别

特效(Effects)

用法

描述:把元素滑动出视区。

slide

参数类型 描述默认值
direction String特效的方向。可能的值:"left"、"right"、"up"、"down"。"both"
distance Number特效的距离。默认为元素的高度(height)还是宽度(width)取决于 direction 参数。可以设置为小于元素的宽度(width)/高度(height)的任意整数。元素的 outerWidth

实例

使用滑动特效(Slide Effect)切换一个 div。

<!doctype html><html lang="en"><head>  <meta charset="utf-8">  <title>滑动特效(Slide Effect)演示</title>  <link rel="stylesheet" href="https://zhishitu.com/">  <style>  #toggle {    width: 100px;    height: 100px;    background: #ccc;  }  </style>  <script src="/images/2021/07/13/07/2021071307095216703970.js"></script>  <script src="/images/2021/07/13/07/2021071307095217088991.js"></script></head><body> <p>点击任意地方进行切换。</p><div id="toggle"></div> <script>$( document ).click(function() {  $( "#toggle" ).toggle( "slide" );});</script> </body></html>