
- script.aculo.us 指南
- script.aculo.us - 主頁
- script.aculo.us - 概述
- script.aculo.us - 模組
- script.aculo.us - 視覺化效果
- script.aculo.us - 拖放
- script.aculo.us - 排序元素
- script.aculo.us - 建立滑塊
- script.aculo.us - 自動完成
- script.aculo.us - 原地編輯
- script.aculo.us 資源
- script.aculo.us - 快速指南
- script.aculo.us - 資源
- script.aculo.us - 討論
script.aculo.us - 展開效果
說明
此效果模擬窗簾,其中受影響元素的內容會向上滾動。
語法
可以使用以下兩種形式之一來使用此效果 -
new Effect.SlideUp('id_of_element', [options]); OR new Effect.SlideUp(element, [options]);
特定效果的引數
此效果沒有任何其他引數,除了通用引數。
示例
<html> <head> <title>script.aculo.us examples</title> <script type = "text/javascript" src = "/javascript/prototype.js"></script> <script type = "text/javascript" src = "/javascript/scriptaculous.js?load = effects"></script> <script type = "text/javascript"> function SUEffect(element){ new Effect.SlideUp(element, {duration:3}); } function ShowImage(element){ new Effect.Appear(element,{duration:1, from:1, to:1.0}); } </script> </head> <body> <div onclick = "ShowImage('myimage')"> Click me to display the image </div> <br /> <div id = "myimage" onclick = "SUEffect(this);"> <img src = "/images/scriptaculous.gif" alt = "script.aculo.us" /> <h2>Click me to Slide Up the Image</h2> </div> </body> </html>
以下為結果 -
scriptaculous_effects.htm
廣告