DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery常見問題 >> jquery定時滑出可最小化的底部提示層
jquery定時滑出可最小化的底部提示層
編輯:JQuery常見問題     
效果預覽:http:///keleyi/phtml/jqtexiao/index.htm
當打開頁面或者刷新頁面後等待兩秒鐘,會在底部滑出可最小化的提示層。滑出層半透明,可關閉再現。

應用范圍很廣,比如彈出廣告、彈出注冊層、彈出最新消息等,實現的jquery代碼比較簡單。等待時間為2000毫秒,即2秒,可以進行修改。

html源代碼:
<!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定時滑出可最小化的底部提示層-</title><base target="_blank" />
<link href="http:///keleyi/phtml/jqtexiao/index/style.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="http:///keleyi/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://" target="_blank" style="color:#000"></a>網站出品(<a href="http://" style="color:#000" target="_blank">http://</a>)<br />
<br />
</span>

當打開頁面或者刷新頁面後等待兩秒鐘,會在底部滑出可最小化的提示層。
</div>
<div style="background-color:Red; width:100%;height:150px;">歡迎。<a href="http:///a/bjac/fbfoqqbp.htm">原文</a></div>
<div style="height:830px;"></div>
<div style="background-color:Fuchsia; width:100%;height:150px;">keleyi</div>
<div style="height:500px;"></div>

<div class="bottom_box-keleyi-com">
<div class="bottom">
<p>感謝您訪問網站!<a href="http://" target="_blank">http://</a>,<br/>專門分享實用、常用的技術文章代碼資源的網站</p>
<div class="ask"><a href="http:///">首頁</a>
<a href="http:///ablut/">關於</a>
<a href="http:///a/bjac/kjsrt3b0.htm">jQuery AJAX</a>
<a href="http:///a/bjac/182di68b.htm">導航樣式</a>
<a href="http:///a/bjac/mt97p5y9.htm">側邊導航</a>
<a href="http:///dev/3068696139522ae4.htm">樹形菜單</a>
<a href="http:///game/1/">捕魚</a>
<a href="http:///game/3/">打地鼠</a>
<a href="http:///game/4/">美女拼圖</a>
<a href="http:///keleyi/phtml/silverlight/">猜數字</a>
</div>
</div>
<div class="close"></div>
</div>
<img class="mini" src="http:///keleyi/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>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved