• <tbody id="9je1r"></tbody><tbody id="9je1r"><acronym id="9je1r"><rp id="9je1r"></rp></acronym></tbody>
      • <acronym id="9je1r"><acronym id="9je1r"><rp id="9je1r"></rp></acronym></acronym>

        亚洲无码Aⅴ,视频1页精品,欧美系列一区二区,曰韩色999

        DIV里純css3實(shí)現(xiàn)的超炫checkbox復(fù)選框和radio單選框

        2016/8/25 9:06:04   閱讀:1515    發(fā)布者:1515

        之前為大家分享了一些css3實(shí)現(xiàn)的按鈕。今天要為大家分享的是純css3實(shí)現(xiàn)的checkbox復(fù)選框和radio單選框,效果超級(jí)炫。先讓我們看看圖吧!

         

        這個(gè)實(shí)例完全由css3實(shí)現(xiàn)的沒有任何js代碼。下面我們一起看下實(shí)現(xiàn)代碼吧

        html代碼:


         <div style="width:200px; float:left"> 
                    <label> 
                        <input type="checkbox" class="option-input checkbox" checked=""> 
                        Checkbox 
                    </label> 
                    <label> 
                        <input type="checkbox" class="option-input checkbox"> 
                        Checkbox 
                    </label> 
                    <label> 
                        <input type="checkbox" class="option-input checkbox"> 
                        Checkbox 
                    </label> 
                </div> 
                <div style="width:200px; float:left"> 
                    <label> 
                        <input type="radio" class="option-input radio" name="example"> 
                        Radio option 
                    </label> 
                    <label> 
                        <input type="radio" class="option-input radio" name="example"> 
                        Radio option 
                    </label> 
                    <label> 
                        <input type="radio" class="option-input radio" name="example"> 
                        Radio option 
                    </label> 
                </div>


        css3代碼:


        @-webkit-keyframes click-wave { 
          0% { 
            width: 40px; 
            height: 40px; 
            opacity: 0.35; 
            position: relative; 
          } 
          100% { 
            width: 200px; 
            height: 200px; 
            margin-left: -80px; 
            margin-top: -80px; 
            opacity: 0.0; 
          } 
        } 
        @-moz-keyframes click-wave { 
          0% { 
            width: 40px; 
            height: 40px; 
            opacity: 0.35; 
            position: relative; 
          } 
          100% { 
            width: 200px; 
            height: 200px; 
            margin-left: -80px; 
            margin-top: -80px; 
            opacity: 0.0; 
          } 
        } 
        @-o-keyframes click-wave { 
          0% { 
            width: 40px; 
            height: 40px; 
            opacity: 0.35; 
            position: relative; 
          } 
          100% { 
            width: 200px; 
            height: 200px; 
            margin-left: -80px; 
            margin-top: -80px; 
            opacity: 0.0; 
          } 
        } 
        @keyframes click-wave { 
          0% { 
            width: 40px; 
            height: 40px; 
            opacity: 0.35; 
            position: relative; 
          } 
          100% { 
            width: 200px; 
            height: 200px; 
            margin-left: -80px; 
            margin-top: -80px; 
            opacity: 0.0; 
          } 
        } 
        .option-input { 
          -webkit-appearance: none; 
          -moz-appearance: none; 
          -ms-appearance: none; 
          -o-appearance: none; 
          appearance: none; 
          position: relative; 
          top: 13.33333px; 
          width: 40px; 
          height: 40px; 
          -webkit-transition: all 0.15s ease-out 0; 
          -moz-transition: all 0.15s ease-out 0; 
          transition: all 0.15s ease-out 0; 
          background: #cbd1d8; 
          border: none; 
          color: #fff; 
          cursor: pointer; 
          display: inline-block; 
          outline: none; 
          position: relative; 
          margin-right: 0.5rem; 
          z-index: 1000; 
        } 
        .option-input:hover { 
          background: #9faab7; 
        } 
        .option-input:checked { 
          background: #40e0d0; 
        } 
        .option-input:checked::before { 
          width: 40px; 
          height: 40px; 
          position: absolute; 
          content: ’\2716’; 
          display: inline-block; 
          font-size: 26.66667px; 
          text-align: center; 
          line-height: 40px; 
        } 
        .option-input:checked::after { 
          -webkit-animation: click-wave 0.65s; 
          -moz-animation: click-wave 0.65s; 
          animation: click-wave 0.65s; 
          background: #40e0d0; 
          content: ’’; 
          display: block; 
          position: relative; 
          z-index: 100; 
        } 
        .option-input.radio { 
          border-radius: 50%; 
        } 
        .option-input.radio::after { 
          border-radius: 50%; 
        } 
        
        body { 
          display: -webkit-box; 
          display: -moz-box; 
          display: box; 
          -webkit-box-orient: horizontal; 
          -moz-box-orient: horizontal; 
          box-orient: horizontal; 
          -webkit-box-pack: start; 
          -moz-box-pack: start; 
          box-pack: start; 
          -webkit-box-align: stretch; 
          -moz-box-align: stretch; 
          box-align: stretch; 
          background: #e8ebee; 
          color: #9faab7; 
          font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 
          text-align: center; 
        } 
        body div { 
          padding: 5rem; 
        } 
        body label { 
          display: block; 
          line-height: 40px; 
        }


        是不是很簡(jiǎn)單。只要復(fù)制上面的html代碼和css代碼到頁(yè)面上。運(yùn)行就可以看到效果了。趕緊試一試吧。哈哈

        亚洲无码Aⅴ,视频1页精品,欧美系列一区二区,曰韩色999
            • <tbody id="9je1r"></tbody><tbody id="9je1r"><acronym id="9je1r"><rp id="9je1r"></rp></acronym></tbody>
            • <acronym id="9je1r"><acronym id="9je1r"><rp id="9je1r"></rp></acronym></acronym>
              乐昌市| 通许县| 肃北| 阳泉市| 榆社县| 内黄县| 巫山县| 长岛县| 吴江市| 当阳市| 南皮县| 万荣县| 新竹市| 壤塘县| 宾川县| 辰溪县| 泽州县| 巩留县| 兴国县| 华宁县| 平山县| 陆丰市| 津南区| 景宁| 肃宁县| 福州市| 莎车县| 富顺县| 汤阴县| 灯塔市| 泸西县| 郸城县| 曲水县| 疏勒县| 时尚| 崇文区| 敦化市| 迁安市| 晋中市| 盖州市| 呼图壁县|