欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

jquery定時(shí)滑出可最小化的底部提示層特效代碼

 更新時(shí)間:2013年10月02日 15:40:23   作者:  
當(dāng)打開頁(yè)面或者刷新頁(yè)面后等待兩秒鐘,會(huì)在底部滑出可最小化的提示層?;鰧影胪该鳎申P(guān)閉再現(xiàn)。應(yīng)用范圍很廣,比如彈出廣告、彈出注冊(cè)層、彈出最新消息等,實(shí)現(xiàn)的jquery代碼比較簡(jiǎn)單

html源代碼:

復(fù)制代碼 代碼如下:

<!DOCTYPE html 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定時(shí)滑出可最小化的底部提示層</title><base target="_blank" />
<link href="http://www.dbjr.com.cn/phtml/jqtexiao/index/style.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="http://www.dbjr.com.cn/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定時(shí)底部滑出可最小化的提示層特效<br />
<a href="http://www.dbjr.com.cn" target="_blank" style="color:#000">腳本之家</a>(<a href="http://www.dbjr.com.cn" style="color:#000" target="_blank">http://www.dbjr.com.cn</a>)<br />
<br />
</span>

當(dāng)打開頁(yè)面或者刷新頁(yè)面后等待兩秒鐘,會(huì)在底部滑出可最小化的提示層。
</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>感謝您訪問腳本之家網(wǎng)站!<a href="http://www.dbjr.com.cn" target="_blank">http://www.dbjr.com.cn</a>,<br/>專門分享實(shí)用、常用的技術(shù)文章代碼資源的網(wǎng)站</p>
<div class="ask"><a href="http://www.dbjr.com.cn/">首頁(yè)</a>
<a href="http://www.dbjr.com.cn/ablut/">關(guān)于</a>
<a href="http://www.dbjr.com.cn/a/bjac/kjsrt3b0.htm">jQuery AJAX</a>
<a href="http://www.dbjr.com.cn/a/bjac/182di68b.htm">導(dǎo)航樣式</a>
<a href="http://www.dbjr.com.cn/a/bjac/mt97p5y9.htm">側(cè)邊導(dǎo)航</a>
<a href="http://www.dbjr.com.cn/dev/3068696139522ae4.htm">樹形菜單</a>
<a href="http://www.dbjr.com.cn/game/1/">捕魚</a>
<a href="http://www.dbjr.com.cn/game/3/">打地鼠</a>
<a href="http://www.dbjr.com.cn/game/4/">美女拼圖</a>
<a href="http://www.dbjr.com.cn/phtml/silverlight/">猜數(shù)字</a>
</div>
</div>
<div class="close"></div>
</div>
<img class="mini" src="http://www.dbjr.com.cn/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>

相關(guān)文章

最新評(píng)論