在本文中,我們將通過使用一個名為script.aculo.us的JavaScript庫來演示Fade的效果。淡入淡出效果使元素平滑過渡。我們還可以調整此效果的持續時間。
用法:
Effect.Fade('element_id');
//或者
Effect.Fade('element_id', options );
選項:
- duration:使元素淡入的持續時間,默認為1.0。
- from:這是一個浮點值,表示開始的不透明度百分比,默認值為0.0。
- to:它是一個浮點值,表示結束的不透明度百分比,默認值為1.0。
注意:要使用此庫,我們應該先安裝該庫,然後在程序中使用它。為此,您可以點擊此鏈接http://script.aculo.us/downloads。
範例1:為了演示此函數的使用,我們編寫了一小段代碼。在其中,我們編寫了一個名為ShowEffect方法的小型JavaScript函數,該函數使用此庫的Fade方法。通過單擊“單擊我淡出線”! ,您會清楚地看到效果。
要查看效果,請先安裝該庫,然後在本地環境中打開此程序。
HTML
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript"
src="prototype.js">
</script>
<script type="text/javascript"
src="scriptaculous.js?load = effects,controls">
</script>
<script type="text/javascript">
function ShowAction(element) {
new Effect.Fade(element,
{ duration:1, from:0, to:1.0 });
}
</script>
</head>
<body>
<div onclick="ShowAction('hideshow')">
<button type="button">
Click me to Fade the line!
</button>
</div>
<br><br>
<div id="hideshow">
LINE TO FADE
</div>
</body>
</html>
輸出:
範例2:
HTML
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript"
src="prototype.js">
</script>
<script type="text/javascript"
src="scriptaculous.js?load = effects,controls">
</script>
<script type="text/javascript">
function ShowEffect(element) {
new Effect.Fade(element,
{ duration:2, from:0, to:1.0 });
}
</script>
</head>
<body>
<div onclick="ShowEffect('geeks_1')">
<button type="button">
Click me to ShowEffect!
</button>
</div>
<br><br>
<div id="geeks_1">
<div style="width:10%; height:10%;
background-color:green;">
Geeks For Geeks
</div>
</div>
</body>
</html>
輸出:
相關用法
- script.aculo.us Fade效果用法及代碼示例
- jQuery Fade效果用法及代碼示例
- JQuery Effect fadeOut()用法及代碼示例
- JQuery Effect show()用法及代碼示例
注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 script.aculo.us Fade Effect。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。