zoukankan      html  css  js  c++  java
  • 电商网站秒杀倒计时实现

    电商网站秒杀倒计时实现

    ===============CSS代码实现=======================

    <style>
    #container{
    190px;
    height: 275px;
    background: #e83632;
    color: #fff;
    position: relative;
    }
    #container .sk_title{
    position: absolute;
    left:0;
    top: 42px;
    100%;
    text-align: center;
    font-size: 34px;
    }
    #container .sk_subtitle{
    position: absolute;
    left: 0;
    top: 90px;
    100%;
    color: rgba(255,255,255,0.5);
    font-size: 20px;
    text-align: center;
    }
    #container .sk_ico{
    position: absolute;
    left: 86px;
    top: 126px;
    display: block;
    20px;
    height: 33px;
    background-image: url(./a.png);
    background-position: -32.5px 0;
    background-size: 52.5px 40px;
    }
    #container .sk_desc{
    position: absolute;
    left: 0;
    top: 170px;
    100%;
    text-align: center;
    font-size: 16px;
    }
    #container .sk_cd{
    position: absolute;
    top: 212px;
    left: 30px;
    height: 40px;
    }
    #container .sk_cd>.cd_item{
    position: relative;
    float: left;
    40px;
    height: 40px;
    text-align: center;
    background: #2f3430;
    margin-right: 5px;
    }
    #container .sk_cd>.cd_item:before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    100%;
    height: 1px;
    background:#e83632;
    }
    #container .sk_cd>.cd_item>.cd_text{
    position: relative;
    line-height: 40px;
    font-weight: bold;
    font-size: 20px;
    }

    ===============js代码实现=======================

  • 相关阅读:
    ListCtrl中垂直滚动条自动滚动
    auth组件
    母版的继承
    mysql数据备份和恢复
    部署MHA
    安装mysql
    yum源优化
    存储过程
    redis哨兵、集群
    redis主从同步
  • 原文地址:https://www.cnblogs.com/sherryStudy/p/second_kill.html
Copyright © 2011-2022 走看看