web前端年会抽奖工具

笔者今天已经上班了,但是没有什么事情做,就把公司年会用到的抽奖工具跟大家分享一下。下面是素材和代码,jquery请自己下载。版本不要太低哦。

web前端年会抽奖工具_第1张图片

web前端年会抽奖工具_第2张图片

web前端年会抽奖工具_第3张图片

@charset "utf-8";

/**
 * @created :   2019/02/01
 * @author  :   Kamto
 * @version :   v1.0
 * @desc    :   年会抽奖代码
 */

*{
    margin: 0;
    padding: 0;
}
html,body{
    width: 100%;
    height: 100%;
}
body{
    background: url("pc_bg1.jpg") top;
    background-size: cover;
}
.main-box{
    width: 1500px;
    margin: 0 auto;
    padding-top: 80px;
    position: relative;
}
/*******title********/
.title-box{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    margin-left: 82px;
}
.title-box img{
    display: inline-block;
    max-width: 100%;
}
/*******desc********/
.desc-box{
    position: absolute;
    left: -32px;
    top: -24px;
    width: 100%;
    z-index: 5;
}
.desc-box img{
    z-index: 6;
}

/*******抽奖主体********/
.main{
    width:1000px;
    height:300px;
    position:relative;
    margin:0 auto;
    margin-top: -60px;
}
.num-bg-box{
    position: relative;
    width: 988px;
    height: 262px;
    border: 3px solid #000;
    background-color: #fff;
    box-sizing: border-box;
    box-shadow: 25px 25px 20px #a30e16;
    -webkit-box-shadow: 25px 25px 20px #a30e16;
    -moz-box-shadow: 25px 25px 20px #a30e16;
    z-index: 8;
}
.num_box{
    height:100px;
    width:770px;
    position:absolute;
    left:50%;
    top:50%;
    margin-left:-378px;
    margin-top: -50px;
    z-index:8;
    overflow:hidden;
    text-align:center;}
.num{
    background:url(../images/num1.png) top center repeat-y;
    float:left;
    width: 64px;
    height: 100px;
    margin-right:6px;
}
.main p{
    text-align: center;
    font-size: 36px;
    color: #fefefe;
    letter-spacing: 5px;
    margin-top: 20px;
}
.btn-box{
    height: 50px;
    width: 540px;
    margin: 0 auto;
    overflow: hidden;
    z-index: 999;
    position: relative;
    top: 10px;
}
.btn{
    width:260px;
    height:50px;
    float: left;
    line-height: 50px;
    box-sizing: border-box;
    text-align: center;
    cursor:pointer;
    border: 1px solid #000;
    background-color: #fff;
}
.btn:hover{
    background-color: #21ba45;
    color: #fff;
}
.btn:last-child{
    margin-left: 20px;
}




	

	公司年会抽奖

	

	
	




	
	
祝你好运~
开始抽奖
停止抽奖

 

你可能感兴趣的:(jQuery)