jquery定时滑出可最小化的底部提示层特效代码 - Web前端
作者:98wpeu发布时间:2026-05-22分类:网页前端技术浏览:10
html源代码:
复制代码 代码如下:
<!DOCtypeHTML PUBLIC "-//W3C//DTD xhtml 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="HTTP://www.w3.org/1999/xhtml"><head>
<meta http-eqUIv="Content-Type" content="text/html; charset=utf-8" />
<title>JQuery定时滑出可最小化的底部提示层</title><base target="_blank" />
<link href="http://www.jb51.net/phtml/jqtexiao/index/style.CSS" rel="StyleSheet" type="text/css">
<script type="text/javascript" src="http://www.jb51.net/pmedia/jQuery/jquery-1.10.2.min.JS"></script>
</head>
<body>
<div style="width:800px;margin:0px auto">
<span style="font-size:18px; font-weight:bold; text-align:center; line-height:25px; color:#000; width:100%">JQuery定时底部滑出可最小化的提示层特效<br />
<a href="http://www.jb51.net" target="_blank" style="color:#000">脚本之家</a>(<a href="http://www.jb51.net" style="color:#000" target="_blank">http://www.jb51.net</a>)<br />
<br />
</span>
当打开页面或者刷新页面后等待两秒钟,会在底部滑出可最小化的提示层。
</div>
<div style="background-color:Red; width:100%;height:150px;">欢迎。</div>
<div style="height:830px;"></div>
<div style="background-color:Fuchsia; width:100%;height:150px;">jb51</div>
<div style="height:500px;"></div>
<div class="bottom_box-keleyi-com">
<div class="bottom">
<p>感谢您访问脚本之家网站!<a href="http://www.jb51.net" target="_blank">http://www.jb51.net</a>,<br/>专门分享实用、常用的技术文章代码资源的网站</p>
<div class="ask"><a href="http://www.jb51.net/">首页</a>
<a href="http://www.jb51.net/ablut/">关于</a>
<a href="http://www.jb51.net/a/bjac/kjsrt3b0.htm">jQuery Ajax</a>
<a href="http://www.jb51.net/a/bjac/182di68b.htm">导航样式</a>
<a href="http://www.jb51.net/a/bjac/mt97p5y9.htm">侧边导航</a>
<a href="http://www.jb51.net/dev/3068696139522ae4.htm">树形菜单</a>
<a href="http://www.jb51.net/game/1/">捕鱼</a>
<a href="http://www.jb51.net/game/3/">打地鼠</a>
<a href="http://www.jb51.net/game/4/">美女拼图</a>
<a href="http://www.jb51.net/phtml/silverlight/">猜数字</a>
</div>
</div>
<div class="close"></div>
</div>
<img class="mini" src="http://www.jb51.net/phtml/jqtexiao/index/mini.png" width="65" height="37" alt="打开" />
<script type="text/JavaScript">
$(function(){
setTimeout(function(){
$(".bottom_box-k"+"eleyi-com").slideDown("slow");
},2000);
$(".close").click(function(){
$(".bottom_box-ke"+"leyi-com").hide();
$(".mini").show(200);
})
$(".mini").click(function(){
$(this).hide();
$(".bottom_box-kele"+"yi-com").show();
})
});
</script>
</body>
</html>
相关推荐
- jquery easyui中treegrid用法的简单实例 - Web前端
- jquery实现checkbox 全选/全不选的通用写法 - Web前端
- Jquery中ajax方法data参数的用法小结 - Web前端
- jquery获取元素索引值index()示例 - Web前端
- jQuery之字体大小的设置方法 - Web前端
- jquery实现动态菜单的实例代码 - Web前端
- jquery和雅虎的yql服务实现天气预报服务示例 - Web前端
- 在每个匹配元素的外部插入新元素的方法 - Web前端
- jQuery中bind,live,delegate与one方法的用法及区别解析 - Web前端
- jquery.cookie() 方法的使用(读取、写入、删除) - Web前端
- 网页前端技术排行
- 最近发表
-
- WordPress随机显示特色图片插件:Random Post Thumbnails
- KeePass实现Chrome浏览器自动填充密码方法一
- LNMP一键包nginx 301强制跳转到https教程
- KeePass实现Chrome浏览器自动填充密码方法二
- #建站# 免费的VPS管理软件Xshell8/Xftp8中文版下载
- 使用Xshell 8连接VPS教程_电脑登录vps的方法
- WordPress评论界面添加烟花????效果
- 不同浏览器书签同步方案:坚果云+Floccus_详细使用教程
- iOS端KeePassXC客户端APP:Strongbox Password Safe
- 给WordPress评论中的Gravatar头像图片添加ALT属性


