导入:采用JSI封装、集成第三方类库
来源: 入门基础 JDK | 作者: 金大为 | 发布: 2007-6-26 00:00
Java???????????????????sun???????????????????xml????Apache?????
JSI????????????API??????????????????????????????????????????????????
????????????????????Windows XP??????????????(????)???
?????Scriptaculous Effect????????????????????????????????????????????????
1???Scriptaculous???
??????????????????????????????????Scriptaculous???us.aculo.script?????????????????????
2?????????????example/effect.js??
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
-->/**
* ??????.
* ????????????????????????????????
* ????????????????????????????????
*/
function slidePanel(panel){
panel = $(panel);
if(panel.style.display=="none"){
//??Scriptaculous Effect?????????
new Effect.SlideDown(panel);
}else{
//??Scriptaculous Effect?????????
new Effect.SlideUp(panel);
}
}
3?????????example/__$package.js??
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
-->//??slidePanel??????????
this.addScript("effect.js","slidePanel",null);
//?effect.js?????us.aculo.script??effects.js????????this.addScriptDependence("effect.js",
"us/aculo/script/effects.js",false);
4?????????????
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
-->
onclick="slidePanel("menu_block1")"?????????????????????????Scriptaculous Effect????????????????????
