search
HomeWeb Front-endCSS TutorialCSS3 makes responsive, configurable lottery wheel

This time I will bring you CSS3 to make a responsive and configurable lottery carousel. What are the things to note about using CSS3 to make a responsive and configurable lottery carousel. The following is a practical case. Get up and take a look.

Due to the initial popular beta period of the WeChat mini program some time ago, the big carousel lottery that was previously implemented using Canvas was transplanted into the WeChat mini program. Unfortunately, the mini program did not have enough support for Canvas at that time. Perfect, I had to reduce it to CSS3. Although it is not as gorgeous as Canvas drawing, I finally completed a lottery demo. For details, see: http://xiazai.jb51.net/201701/yuanma/wechat-canvas_jb51.rar

Thinking about it afterwards, CSS3 implementation is not without its benefits. For example, it is simple, fast, easy to debug, and rendering is more efficient than Canvas. More importantly, it supports

media query, and the large carousel can also be made responsive. of. So I took the time to sort it out, use pure CSS3 to implement a large carousel lottery demo and record it.

If you have similar needs and don’t want to bother with the details, you can go here - Canvas’ complete big carousel lottery project (can be used directly) http://xiazai.jb51.net/201701/yuanma/ canvas_jb51.rar

The code will be pasted directly below.

Code

HTML

<section>
    <p>
        </p>
<ul></ul>
        <p></p>
    
    <a>抽奖</a>     
</section>
JS

(function() {
    // 奖品配置
    var awards = [
            {'index': 0, 'text': '耳机' , 'name': 'icono-headphone'},
            {'index': 1, 'text': 'iPhone' , 'name': 'icono-iphone'},
            {'index': 2, 'text': '相机' , 'name': 'icono-camera'},
            {'index': 3, 'text': '咖啡杯' , 'name': 'icono-cup'},
            {'index': 4, 'text': '日历', 'name': 'icono-calendar'},
            {'index': 5, 'text': '键盘', 'name': 'icono-keyboard'}
        ],
        len = awards.length,
        turnNum = 1 / len;  // 文字旋转 turn 值
    var gbWheel = $('gbWheel'),
        lineList = gbWheel.querySelector('ul.gb-wheel-line'),
        itemList = gbWheel.querySelector('.gb-wheel-list'),
        lineListHtml = [],
        itemListHtml = [];
    var transform = preTransform();
    awards.forEach(function(v, i, a) {
        // 分隔线
        lineListHtml.push('
  • ');         // 奖项         itemListHtml.push('

    ');         itemListHtml.push('

    ');         itemListHtml.push('

    ');         itemListHtml.push('');         itemListHtml.push('

    ');         itemListHtml.push('

    ');         itemListHtml.push(v.text);         itemListHtml.push('

    ');         itemListHtml.push('');         itemListHtml.push('');     });                lineList.innerHTML = lineListHtml.join('');     itemList.innerHTML = itemListHtml.join('');     function $(id) {         return document.getElementById(id);     };     // 旋转     var i = 0;     $('gbLottery').onclick = function() {         i++;         gbWheel.querySelector('.gb-wheel-content').style = transform + ': rotate('+ i * 3600 +'deg)';       }     // transform兼容     function preTransform() {         var cssPrefix,         vendors = {           '': '',           Webkit: 'webkit',           Moz: '',           O: 'o',           ms: 'ms'         },         testEle = document.createElement('p'),         cssSupport = {};          // 嗅探特性         Object.keys(vendors).some(function(vendor) {             if (testEle.style[vendor + (vendor ? 'T' : 't') + 'ransform'] !== undefined) {               cssPrefix = vendor ? '-' + vendor.toLowerCase() + '-' : '';               return true;             }         });       function normalizeCss(name) {         name = name.toLowerCase();         return cssPrefix ? cssPrefix + name : name;       }       cssSupport = {         transform: normalizeCss('Transform'),       }       return cssSupport.transform;     } }());CSS

    html {
        font-size: 10px
    }
    .gb-wheel-container ul,
    .gb-wheel-container li,
    .gb-wheel-container p {
        margin: 0;
        padding: 0
    }
    .gb-wheel-container ul,
    .gb-wheel-container li {
        list-style: none
    }
    .gb-wheel-container {
        margin: 0 auto;
        position: relative;
        width: 30rem;
        height: 30rem;
        border-radius: 50%;
        box-shadow: 0 2px 3px #333, 0 0 2px #000;
        overflow: hidden
    }
    .gb-wheel-content {
        position: absolute;
        left: 1rem;
        top: 1rem;
        z-index: 2;
        width: 28rem;
        height: 28rem;
        box-sizing: border-box;
        border-radius: inherit;
        background-clip: padding-box;
        background: -webkit-radial-gradient(rgba(100, 100, 100, 0.1) 15%, transparent 16%) 0 0,  
                    -webkit-radial-gradient(rgba(100, 100, 100, 0.1) 15%, transparent 16%) 8px 8px,  
      -webkit-radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%) 0 1px,
      -webkit-radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%) 8px 9px;
        background: radial-gradient(rgba(100, 100, 100, 0.1) 15%, transparent 16%) 0 0,
                    radial-gradient(rgba(100, 100, 100, 0.1) 15%, transparent 16%) 8px 8px, 
      radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%) 0 1px, 
      radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 20%) 8px 9px;
        background-color: #ffcb3f;
        background-size: 12px 14px
    }
    .gb-wheel-content:before {
        content: ' ';
        position: absolute;
        left: -1rem;
        top: -1rem;
        z-index: -1;
        width: 28rem;
        height: 28rem;
        border-radius: inherit;
        border: 1rem solid #E44025;
        box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2) inset
    }
    .gb-wheel-list {
        position: absolute;
        left: 0;
        top: 0;
        width: inherit;
        height: inherit;
        z-index: 9999
    }
    .gb-wheel-item {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        color: #e4370e;
        font-weight: bold;
        text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6)
    }
    .gb-wheel-icontent {
        position: relative;
        display: block;
        padding-top: 1.5rem;
        margin: 0 auto;
        text-align: center;
        -webkit-transform-origin: 50% 14rem;
        -ms-transform-origin: 50% 14rem;
        transform-origin: 50% 14rem
    }
    .gb-wheel-itext {
        font-size: 1.4rem;
        font-weight: lighter
    }
    .gb-wheel-iicon [class*=icono-] {
        color: #e4370e
    }
    .gb-wheel-line {
        position: absolute;
        left: 0;
        top: 0;
        width: inherit;
        height: inherit;
        z-index: 99
    }
    .gb-wheel-litem {
        position: absolute;
        left: 14rem;
        top: 0;
        width: 1px;
        height: 14rem;
        background-color: rgba(228, 55, 14, 0.6);
        overflow: hidden;
        -webkit-transform-origin: 50% 14rem;
        -ms-transform-origin: 50% 14rem;
        transform-origin: 50% 14rem
    }
    .gb-wheel-btn {
        position: absolute;
        left: 11rem;
        top: 11rem;
        z-index: 400;
        width: 8rem;
        height: 8rem;
        border-radius: 50%;
        color: #F4E9CC;
        background-color: #E44025;
        line-height: 8rem;
        text-align: center;
        font-size: 2rem;
        text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.6);
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6), 0 0 5px 4px rgba(0, 0, 0, 0.2) inset;
        text-decoration: none
    }
    a.gb-wheel-btn {
        border-bottom: none
    }
    .gb-wheel-btn::after {
        position: absolute;
        content: '';
        left: 2.5rem;
        top: -1rem;
        width: 3rem;
        height: 3rem;
        background-color: #E44025;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6), 0 0 5px 4px rgba(0, 0, 0, 0.2) inset
    }
    .gb-wheel-btn.disabled,
    .gb-wheel-btn.disabled::after {
        pointer-events: none;
        background: #B07A7B;
        color: #ccc
    }
    .gb-wheel-run {
        -webkit-transition: transform 6s ease;
        transition: transform 6s ease
    }
    @media only screen and (min-width: 320px) {
        html {
            font-size: 10px
        }
    }
    @media only screen and (min-width: 375px) {
        html {
            font-size: 11.71875px
        }
    }
    @media only screen and (min-width: 480px) {
        html {
            font-size: 15px
        }
    }

    I believe you have read the case in this article After mastering the method, please pay attention to other related articles on the php Chinese website for more exciting content!

    Recommended reading:

    Detailed explanation of the use of linear-gradient

    Several methods of clearing floats

    The above is the detailed content of CSS3 makes responsive, configurable lottery wheel. For more information, please follow other related articles on the PHP Chinese website!

  • Statement
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    css怎么隐藏元素但不占空间css怎么隐藏元素但不占空间Jun 01, 2022 pm 07:15 PM

    两种方法:1、利用display属性,只需给元素添加“display:none;”样式即可。2、利用position和top属性设置元素绝对定位来隐藏元素,只需给元素添加“position:absolute;top:-9999px;”样式。

    原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

    怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

    css3如何实现鼠标点击图片放大css3如何实现鼠标点击图片放大Apr 25, 2022 pm 04:52 PM

    实现方法:1、使用“:active”选择器选中鼠标点击图片的状态;2、使用transform属性和scale()函数实现图片放大效果,语法“img:active {transform: scale(x轴放大倍数,y轴放大倍数);}”。

    css3什么是自适应布局css3什么是自适应布局Jun 02, 2022 pm 12:05 PM

    自适应布局又称“响应式布局”,是指可以自动识别屏幕宽度、并做出相应调整的网页布局;这样的网页能够兼容多个不同的终端,而不是为每个终端做一个特定的版本。自适应布局是为解决移动端浏览网页而诞生的,能够为使用不同终端的用户提供很好的用户体验。

    css3动画效果有变形吗css3动画效果有变形吗Apr 28, 2022 pm 02:20 PM

    css3中的动画效果有变形;可以利用“animation:动画属性 @keyframes ..{..{transform:变形属性}}”实现变形动画效果,animation属性用于设置动画样式,transform属性用于设置变形样式。

    css3怎么设置动画旋转速度css3怎么设置动画旋转速度Apr 28, 2022 pm 04:32 PM

    在css3中,可以利用“animation-timing-function”属性设置动画旋转速度,该属性用于指定动画将如何完成一个周期,设置动画的速度曲线,语法为“元素{animation-timing-function:速度属性值;}”。

    css3线性渐变可以实现三角形吗css3线性渐变可以实现三角形吗Apr 25, 2022 pm 02:47 PM

    css3线性渐变可以实现三角形;只需创建一个45度的线性渐变,设置渐变色为两种固定颜色,一个是三角形的颜色,另一个为透明色即可,语法“linear-gradient(45deg,颜色值,颜色值 50%,透明色 50%,透明色 100%)”。

    一文了解CSS3中的新特性 ::target-text 选择器一文了解CSS3中的新特性 ::target-text 选择器Apr 12, 2022 am 11:24 AM

    本篇文章带大家一起深入了解一下CSS3中的新特性::target-text 选择器,聊聊该选择器的作用和使用方法,希望对大家有所帮助!

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Tools

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    WebStorm Mac version

    WebStorm Mac version

    Useful JavaScript development tools

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment

    SublimeText3 Linux new version

    SublimeText3 Linux new version

    SublimeText3 Linux latest version

    Safe Exam Browser

    Safe Exam Browser

    Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.