jquery實現(xiàn)可關(guān)閉的倒計時廣告特效代碼
本文實例講述了jquery實現(xiàn)可關(guān)閉的倒計時廣告特效代碼。分享給大家供大家參考。具體如下:
這是一款類似播放視頻時候最開始的倒計時廣告,廣告時間結(jié)束才能看到視頻內(nèi)容,一個JS小貼片廣告代碼,右上角帶關(guān)閉按鈕,左上角顯示倒計時剩余時間,運行jQuery代碼綜合實現(xiàn),CSS和HTML共同結(jié)合的網(wǎng)頁特效,兼容各主流瀏覽器,本效果是從門戶網(wǎng)站上整理而來。希望大家喜歡。
先來看看運行效果截圖:

在線演示地址如下:
http://demo.jb51.net/js/2015/jquery-close-time-adv-style-codes/
具體代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="gb2312">
<title>js貼片倒計時代碼</title>
<style>
*{padding:0;margin:0; font-size:12px;}
ol,ul,li{list-style:none}
img{border:none}
.box{ width:564px; height:361px; margin:20px auto; position:relative; display:none;}
.ad_time{ width:554px; height:351px; background:#000; filter:alpha(opacity=50);-moz-opacity:0.5;opacity: 0.5; padding:5px; position:absolute; top:0; left:0; color:#fff;}
.ad_time span{ font-weight:bold; color:#cc0; padding:0 5px;}
.close{ width:49px; height:20px; background:url(images/close.png) no-repeat; position:absolute; top:0; right:0; cursor:pointer;}
.btn{ width:100px; height:30px; background:#eee; border:1px solid #ddd; font:normal 12px/30px '寰蔣闆呴粦'; text-align:center; margin:20px auto; cursor:pointer;}
</style>
<script type="text/javascript" src="jquery-1.6.2.min.js" language="javascript"></script>
<script type="text/javascript" language="javascript">
function lxfEndtime(){
$t=$('#t').html();
if($t!=0){
$('#t').html($t-1);
$i=setTimeout("lxfEndtime()",1000);
}else{
$('.box').hide();
$('.btn').show();
$('#t').html(6);
$('.ad_time').css({'width':'554px','height':'351px'});
clearTimeout($i);
}
};
$(document).ready(function(){
$('.btn').live('click',function(){
$('.box').show();
$(this).hide();
$('.ad_time').animate({width:110,height:18},'slow');
lxfEndtime();
})
$('.close').click(function(){
$('.box').hide();
$('.btn').show();
$('#t').html(6);
$('.ad_time').css({'width':'554px','height':'351px'});
clearTimeout($i);
})
});
</script>
</head>
<body>
<!--代碼開始-->
<div class="box">
<div class="ad"><a href="#" target="_blank"><img src="images/ad.jpg" /></a></div>
<div class="ad_time">時間還剩<span id="t">50</span>秒</div>
<div class="close"></div>
</div>
<div class="btn">點擊顯示效果</div>
<!--代碼結(jié)束-->
</body>
</html>
希望本文所述對大家的jquery程序設(shè)計有所幫助。
相關(guān)文章
jQuery DateTimePicker 日期和時間插件示例
jQuery UI很強大,其中的日期選擇插件Datepicker是一個配置靈活的插件,這篇文章主要介紹了jQuery DateTimePicker 日期和時間插件示例,有興趣的可以了解一下。2017-01-01
easyui簡介_動力節(jié)點Java學(xué)院整理
這篇文章主要介紹了easyui簡介,詳細的介紹了什么是easyui和easyui的用法,有興趣的可以了解一下2017-07-07
input:checkbox多選框?qū)崿F(xiàn)單選效果跟radio一樣
checkbox是多選,怎么才能讓他變成單選,效果跟radio一樣呢,本菜鳥就自己寫了個小程序,代碼很簡單2014-06-06
jQuery使用unlock.js插件實現(xiàn)滑動解鎖
unlock.js插件具有滑動解鎖,尺寸、顏色、字體大小等都可以個性化定制等特點,接下來通過本文給大家分享jQuery使用unlock.js插件實現(xiàn)滑動解鎖思路講解,感興趣的朋友一起看看吧2017-04-04
jQuery實現(xiàn)信息提示框(帶有圓角框與動畫)效果
這篇文章主要介紹了jQuery實現(xiàn)信息提示框效果,帶有圓角框與動畫功能,點擊上面按鈕實現(xiàn)對應(yīng)文字的漸變顯示效果,非常具有實用價值,需要的朋友可以參考下2015-08-08

