script.aculo.us庫是一個跨瀏覽器庫,旨在改善網站的用戶界麵。在本文中,我們將演示Move效果。此效果用於使元素平滑移動到給定參數。我們也可以調整效果的持續時間。
用法:
Effect.Move('object', [options] )
參數:該效果在下麵描述的options對象中具有三個參數:
- x:它是一個整數,代表新左值,取決於模式,絕對或相對。
- y:它是一個整數,代表新的最大值,該最大值或絕對取決於模式。
- mode:它是一個字符串,它指定元素是絕對移動還是相對於其自身位置移動。
為了演示此函數的使用,我們編寫了一小段代碼。在其中,我們編寫了一個名為ShowEffect方法的小型JavaScript函數,該函數使用此庫的Move方法。下麵的示例演示了該方法。
範例1:
HTML
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript"
src="prototype.js">
</script>
<script type="text/javascript"
src="scriptaculous.js">
</script>
<script type="text/javascript">
function ShowEffect(element) {
// Using the Move effect to
// move the element to the
// given absolute position
new Effect.Move(element, {
x:0,
y:0,
mode:'absolute'
});
}
</script>
</head>
<body>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>script.aculo.us Move Effect</h2>
<button onclick="ShowEffect('hideshow')">
Click me to Move the line!
</button>
<br><br>
<div id="hideshow"
style="position:absolute;">
LINE TO MOVE
</div>
</body>
</html>
輸出:
範例2:
HTML
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript"
src="prototype.js">
</script>
<script type="text/javascript"
src="scriptaculous.js">
</script>
<script type="text/javascript">
function ShowEffect(element) {
// Using the Move effect to
// move the element to the
// given relative position
new Effect.Move(element, {
x:50,
y:-50,
mode:'relative'
});
}
</script>
</head>
<body>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>script.aculo.us Move Effect</h2>
<button onclick="ShowEffect('geeks_1')">
Click me to show the effect
</button>
<br><br>
<div id="geeks_1" style=
"position:absolute; top:250px">
GeeksforGeeks
</div>
</body>
</html>
輸出:
相關用法
- p5.js Camera move()用法及代碼示例
- d3.js brush.move()用法及代碼示例
- Node.js fs-extra move()用法及代碼示例
- JQuery Effect fadeOut()用法及代碼示例
- JQuery Effect show()用法及代碼示例
注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 script.aculo.us Move Effect。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。