jQuery实现每日秒杀商品倒计时功能
(编辑:jimmy 日期: 2024/11/2 浏览:3 次 )
html & js:
<html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>jQuery每日秒杀倒计时</title> <link rel="stylesheet" href="css/zzsc.css" rel="external nofollow" > </head> <body> <div class="se-kl"> <div class="se-cn">倒计时</div> <div class="se-en">COUNT DOWN</div> <i class="se-io"></i> <div class="se-info">距离结束还剩</div> <div class="se-count"> <div class="se-day"></div> <div class="se-hour"><span class="se-txt">00</span></div> <div class="se-min"><span class="se-txt">00</span></div> <div class="se-sec"><span class="se-txt">00</span></div> </div> </div> <script src="/UploadFiles/2021-04-02/jquery.min.js">(zzsc.cs) * { margin: 0; padding: 0; } .se-kl { width: 190px; height: 275px; background-color: #e83632; margin: 100px auto; position: relative; } .se-cn { position: absolute; top: 42px; left: 0; width: 100%; text-align: center; font-size: 34px; color: #fff; } .se-en { position: absolute; top: 90px; left: 0; width: 100%; text-align: center; font-size: 20px; color: rgba(255, 255, 255, 0.5); } .se-io { width: 20px; height: 33px; position: absolute; background: url(../imgs/seckill.png) no-repeat; background-position: -32.5px 0; background-size: 52.5px 40px; left: 85px; top: 126px; display: block; } .se-info { position: absolute; top: 170px; text-align: center; width: 100%; font-size: 16px; color: #fff; } .se-count { position: absolute; top: 212px; left: 30px; height: 40px; } .se-day { display: none; } .se-hour, .se-min, .se-sec { position: relative; background-color: #2f3430; width: 40px; height: 40px; float: left; text-align: center; line-height: 40px; margin-right: 5px; } .se-txt { font-size: 20px; font-weight: bold; color: #fff; } .se-txt:before { content: ""; display: block; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background-color: #e83632; }示例图1:
注:本程序依赖于jquery库,请自行下载并选择合适路径或使用远程cdn地址:
https://cdn.bootcss.com/jquery/3.4.1/jquery.js
总结
以上所述是小编给大家介绍的jQuery实现每日秒杀商品倒计时功能,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!
下一篇:vue-cli history模式实现tomcat部署报404的解决方式