( ! ) Warning: include(): http:// wrapper is disabled in the server configuration by allow_url_include=0 in D:\www\up\jQuery\jquery_09.php on line 21 | ||||
---|---|---|---|---|
Call Stack | ||||
# | Time | Memory | Function | Location |
1 | 0.0000 | 365592 | {main}( ) | ...\jquery_09.php:0 |
( ! ) Warning: include(http://pub.houheaven.com/Nav02/Nav_deep2.htm): failed to open stream: no suitable wrapper could be found in D:\www\up\jQuery\jquery_09.php on line 21 | ||||
---|---|---|---|---|
Call Stack | ||||
# | Time | Memory | Function | Location |
1 | 0.0000 | 365592 | {main}( ) | ...\jquery_09.php:0 |
( ! ) Warning: include(): Failed opening 'http://pub.houheaven.com/Nav02/Nav_deep2.htm' for inclusion (include_path='.;C:\php\pear') in D:\www\up\jQuery\jquery_09.php on line 21 | ||||
---|---|---|---|---|
Call Stack | ||||
# | Time | Memory | Function | Location |
1 | 0.0000 | 365592 | {main}( ) | ...\jquery_09.php:0 |
突然显示:$(Content).show();
突然隐藏:$(Content).hide();
<div> CSS:
width:600px; height:150px; background:#bbb; border:1px solid #666;
缓慢显示:$(Content).show(speed,fn);
缓慢隐藏:$(Content).hide(speed,fn);
参数说明:
speed,指定时间为毫秒数或者为预定义的fast、normal、slow,在指定的时间内,元素的大小和不透明度会平缓地降到0,然后把元素的 display 设置为 none。
fn,回调函数,在指定的动画结束时调用的函数,可以省略。
<div> CSS:
width:600px; height:150px; background:#bbb; border:1px solid #666;
淡入:$(Content).fadeIn(speed,fn);
淡出:$(Content).fadeOut(speed,fn);
提示:speed 和 fn 均为快选参数,可以省略。
<div> CSS:
width:600px; height:150px; background:#bbb; border:1px solid #666;
自定义:$(Content).fadeTo(speed,opacity,fn);
参数说明:opacity,不透明度,取值范围为0.0到1.0。
<div> CSS:
width:600px; height:150px; background:#bbb; border:1px solid #666;
滑上:$(Content).slideUp(speed,fn);
滑下:$(Content).slideDown(speed,fn);
提示:speed 和 fn 均为快选参数,可以省略。
<div> CSS:
width:600px; height:150px; background:#bbb; border:1px solid #666;
$(Content).stop();
$(Content).delay();
[ 后天堂向上 | 好好学习天天向上 ]