分享好友 教程首页 教程搜索 频道列表

前端开发技术之jquery实现可关闭的倒计时广告特效HTML代码

2021-12-22 18:413750
+关注2
核心提示:这是一款类似播放视频时候最开始的倒计时广告,广告时间结束才能看到视频内容,一...

这是一款类似播放视频时候最开始的倒计时广告,广告时间结束才能看到视频内容,一个JS小贴片广告代码,右上角带关闭按钮,左上角显示倒计时剩余时间,运行jQuery代码综合实现,CSS和HTML共同结合的网页特效,兼容各主流浏览器,本效果是从门户网站上整理而来。希望大家喜欢。

先来看看运行效果截图:


具体代码如下:

<!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" sr c="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 sr c="images/ad.jpg" /></a></div>
 <div class="ad_time">时间还剩<span id="t">50</span>秒</div>
 <div class="close"></div>
</div>
<div class="btn">点击显示效果</div>
<!--代码结束-->
</body>
</html>
本文标签: #定时 #弹窗 #广告
整理员:网络转载
免责声明:凡注明来源本网的所有作品,均为本网合法拥有版权或有权使用的作品,欢迎转载,注明出处。非本网作品均来自互联网,转载目的在于传递更多信息,并不代表本网赞同其观点和对其真实性负责。
生成海报
您可能在找更多

使用PHP怎么对指定的时间段进行判断

    本篇文章给大家分享的是有关使用PHP怎么对指定的时间段进行判断,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧

小黑 PHP2022-09-11

使用JQuery完成页面定时弹出广告

    Js相关技术定时器:setIntervalclearIntervalsetTimeoutclearTimeout显示: img.style.display = block隐藏: img.style.display = noneimg 对象style属性: style对象需求分析当用户打开界面,3秒钟之后弹出广告,这个

小黑 JS相关2021-12-22

DESTOON程序-会员30天到期提醒模板消息实现

    这类模板消息可以利用系统的计划任务,定时执行通知如下,是一个会员到期30天的计划任务在计划任务目录api/cron 里建一个文件 如:vip通知viptongzhi.inc.php文件内容为:?phpdefined('IN_DESTOON') or exit('Access Denied');$atime = strtotime(date("Y-m-d"),time())+2592000;$btime = strtotime(date("

小黑 开发技术 12019-11-18

下一篇
我来说两句
抢沙发