script.aculo.us的Effect.DropOut()方法用于从DOM中删除并显示模拟下拉效果的元素。将核心效果Effect.MoveBy()和effect.Opacity()组合在一起以生成DroupOut效果。它可以与Effect.Appear()一起实现,以删除元素,然后再次显示它。
用法:
new Effect.DropOut(element_id, {options});
此效果不需要任何特定参数。可以使用视觉效果模块的常用参数。
例:
<!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 ShowElement(element) {
new Effect.Appear(element, { duration:1 });
}
function HideElement(element) {
new Effect.DropOut(element, { duration:3 });
}
</script>
</head>
<body>
<div onclick="ShowElement('element')">
<Button>Show Content</Button>
</div>
<br />
<div onclick="HideElement('element')">
<Button>Hide Content</Button>
</div>
<br />
<img id="element" src="GEEKSIMAGES/gfg.png">
</body>
</html>
输出:
相关用法
注:本文由纯净天空筛选整理自swapnil074大神的英文原创作品 script.aculo.us DropOut Effect。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。