使用css实现一个抽奖转盘

使用html、css3、js绘制一个抽奖转盘

1.画一个圆形container

设置溢出内容隐藏,并且使其内部元素靠上半部分居中

<div class="container">

</div>
.container{
   position: relative;
   width: 300px;
   height: 300px;
   border-radius: 50%;
   background: #f7c894;
   display: flex;
   justify-content: center;
   overflow: hidden;
   border: 20px solid #ffbd72;
}

2.我们添加一个扇形元素 宽度 暂时设为100px

使用剪切路径的css属性中的多边形方法 clip-path: polygon() 来画这个扇形部分

改变旋转用的中心点 transform-origin: 50% 100%;

 

<div class="container">
   <div class="content">
       <div class="fan-blade"></div>
   </div>
</div>

.content{
   position: relative;
   width: 100%;
   height: 100%;
   display: flex;
   justify-content: center;
   border-radius: 50%;
   overflow: hidden;
}
.fan-blade{
   position: absolute;
   width: 100px;
   height: 50%;
   clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
   -webkit-clip-path: -webkit-polygon(50% 100%, 0% 0%, 100% 0%);
   transform-origin: 50% 100%;
}

3.我们将扇形复制8份,每个依次旋转45deg,并且单数子元素和双数子元素使用不同的背景颜色 

.container .fan-blade:nth-child(1){
            transform: rotateZ(45deg);
        }
        .container .fan-blade:nth-child(2){
            transform: rotateZ(90deg);
        }
        .container .fan-blade:nth-child(3){
            transform: rotateZ(135deg);
        }
        .container .fan-blade:nth-child(4){
            transform: rotateZ(180deg);
        }
        .container .fan-blade:nth-child(5){
            transform: rotateZ(225deg);
        }
        .container .fan-blade:nth-child(6){
            transform: rotateZ(270deg);
        }
        .container .fan-blade:nth-child(7){
            transform: rotateZ(315deg);
        }
        .container .fan-blade:nth-child(8){
            transform: rotateZ(360deg);
        }

        .container .fan-blade:nth-child(odd){
            background-color: #f7c894;
        }
        .container .fan-blade:nth-child(even){
            background-color: #ffebd4;
        }

 4.这时扇形之间还有很大的空间,我们使用js来计算正确的宽度应该是多少,并把宽度设置到对应的扇形元素上

//设置一个选择器
let $ = function(selector){return document.querySelectorAll(selector)}

let num = 8             //个数
let diameter = 300      //转盘直径

let width = 0           //扇叶元素宽度
let deg = 360 / num     //每一叶的旋转角度

width = diameter * Math.tan((deg/2) * Math.PI/180)

$('.fan-blade').forEach(e=>{
    e.style.width = width + 'px'
})

 5.给转盘加上小彩灯

<div class="lights-content">
    <div class="lights"><div class="light"></div></div>
    <div class="lights"><div class="light"></div></div>
    <div class="lights"><div class="light"></div></div>
    <div class="lights"><div class="light"></div></div>
    <div class="lights"><div class="light"></div></div>
    <div class="lights"><div class="light"></div></div>
    <div class="lights"><div class="light"></div></div>
    <div class="lights"><div class="light"></div></div>
</div>

 

.lights-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    border-radius: 50%;
}
.lights{
    position: absolute;
    width: 16px;
    height: 50%;
    transform-origin: 50% 100%;
}
.light{
    position: absolute;
    top: -16px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    
}
    
.lights-content .lights:nth-child(1){
    transform: rotateZ(45deg);
}
.lights-content .lights:nth-child(2){
    transform: rotateZ(90deg);
}
.lights-content .lights:nth-child(3){
    transform: rotateZ(135deg);
}
.lights-content .lights:nth-child(4){
    transform: rotateZ(180deg);
}
.lights-content .lights:nth-child(5){
    transform: rotateZ(225deg);
}
.lights-content .lights:nth-child(6){
    transform: rotateZ(270deg);
}
.lights-content .lights:nth-child(7){
    transform: rotateZ(315deg);
}
.lights-content .lights:nth-child(8){
    transform: rotateZ(360deg);
}

.lights-content .lights:nth-child(odd) .light{
    box-shadow: 0 0 7.5px #ff0200;
	background-color: #ff0200;
	animation: lottery_light1 0.75s ease-in-out infinite;
}
.lights-content .lights:nth-child(even) .light{
    box-shadow: 0 0 7.5px #ffffff;
	background-color: #ffffff;
	animation: lottery_light2 0.75s ease-in-out infinite;
}

@keyframes lottery_light1 {
	0%{
		box-shadow: 0 0 7.5px #ff0200;
		background-color: #ff0200;
	}
	10%{
		box-shadow: 0 0 7.5px #ff0200;
		background-color: #ff0200;
	}
	40%{
		box-shadow: 0 0 7.5px #ffffff;
		background-color: #ffffff;
	}
	60%{
		box-shadow: 0 0 7.5px #ffffff;
		background-color: #ffffff;
	}
	90%{
		box-shadow: 0 0 7.5px #ff0200;
		background-color: #ff0200;
	}
	100%{
		box-shadow: 0 0 7.5px #ff0200;
		background-color: #ff0200;
	}
}

@keyframes lottery_light2 {
	0%{
		box-shadow: 0 0 7.5px #ffffff;
		background-color: #ffffff;
	}
	10%{
		box-shadow: 0 0 7.5px #ffffff;
		background-color: #ffffff;
	}
	40%{
		box-shadow: 0 0 7.5px #ff0200;
		background-color: #ff0200;
	}
	60%{
		box-shadow: 0 0 7.5px #ff0200;
		background-color: #ff0200;
	}
	90%{
		box-shadow: 0 0 7.5px #ffffff;
		background-color: #ffffff;
	}
	100%{
		box-shadow: 0 0 7.5px #ffffff;
		background-color: #ffffff;
	}
}
  • 0
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
好的,以下是一个使用HTMLCSS和JS实现抽奖转盘HTML代码: ```html <div class="container"> <div class="wheel"> <div class="section"><span>1</span></div> <div class="section"><span>2</span></div> <div class="section"><span>3</span></div> <div class="section"><span>4</span></div> <div class="section"><span>5</span></div> <div class="section"><span>6</span></div> </div> <button class="btn" onclick="start()">开始抽奖</button> </div> ``` CSS代码: ```css .container { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f2f2f2; } .wheel { position: relative; width: 300px; height: 300px; border-radius: 50%; background-color: #ff9966; overflow: hidden; transform: rotate(0deg); transition: transform 6s ease-in-out; } .section { position: absolute; width: 100%; height: 100%; text-align: center; font-size: 30px; font-weight: bold; color: #fff; line-height: 300px; transition: transform 1s ease-in-out; } .section:nth-child(1) { transform: rotate(0deg); background-color: #ffcc99; } .section:nth-child(2) { transform: rotate(60deg); background-color: #ff9933; } .section:nth-child(3) { transform: rotate(120deg); background-color: #ffcc33; } .section:nth-child(4) { transform: rotate(180deg); background-color: #ff6633; } .section:nth-child(5) { transform: rotate(240deg); background-color: #ff9933; } .section:nth-child(6) { transform: rotate(300deg); background-color: #ffcc99; } .btn { margin-top: 30px; padding: 10px 20px; font-size: 20px; font-weight: bold; color: #fff; background-color: #ff9933; border: none; border-radius: 5px; cursor: pointer; transition: background-color 0.3s ease-in-out; } .btn:hover { background-color: #ffcc33; } ``` JS代码: ```javascript var deg = 0; var speed = 0; var prize = ''; function start() { // 生成一个随机速度 speed = Math.floor(Math.random() * 20) + 10; // 生成一个随机奖品 prize = Math.floor(Math.random() * 6) + 1; // 计算需要旋转的角度 deg = 360 / 6 * (prize - 1) + 360 / 6 / 2 - Math.random() * 360 / 6; // 开始旋转转盘 var wheel = document.querySelector('.wheel'); wheel.style.transform = 'rotate(' + deg + 'deg)'; wheel.style.transition = 'transform 6s ease-in-out'; // 6秒后停止旋转 setTimeout(function() { stop(); }, 6000); } function stop() { // 停止旋转 var wheel = document.querySelector('.wheel'); wheel.style.transform = 'rotate(' + deg + 'deg)'; wheel.style.transition = 'transform 0s'; // 显示中奖结果 alert('恭喜您获得:' + document.querySelector('.section:nth-child(' + prize + ') span').innerHTML); } ``` 这个抽奖转盘使用CSS3的旋转效果来实现转盘的转动,使用JS生成随机速度和奖品,并计算需要旋转的角度。在点击开始抽奖按钮后,将转盘旋转到指定角度,并在6秒后停止旋转,并弹出中奖结果提示框。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值