- 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.Shrink('id_of_element', [options]);
OR
new Effect.Shrink(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 ShrinkEffect(element){
new Effect.Shrink(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 = "ShrinkEffect(this);">
<img src = "/images/scriptaculous.gif" alt = "script.aculo.us" />
<h2>Click me to Shrink me out</h2>
</div>
</body>
</html>
将会产生以下结果 −
scriptaculous_effects.htm
广告