• html 中画半圆的方法


    html 中画半圆的方法

    <style>
    
            div{
                display: inline-block;
    
            }
            .red{
                background-color: red;
            }
            .green{
                background-color: green;
            }
            #one{
                transform: rotate(100deg);
    
            }
            #two{
    
                transform: rotate(100deg);
    
            }
            .left-circle{
                 100px;
                height: 200px;
                border-radius: 100px 0 0 100px;
                transform-origin: 100px 100px;
            }
            .right-circle{
                 100px;
                height: 200px;
                border-radius: 0 100px 100px 0;
                margin-left: -5px;
                transform-origin: 0 100px;
    
            }
            /*.up-circle{*/
            /*    height: 100px;*/
            /*     200px;*/
            /*    border-radius: 100px 100px 0 0;*/
            /*    transform: rotateZ(180deg);*/
            /*}*/
            /*.down-circle{*/
            /*     height: 100px;*/
            /*     200px;*/
            /*    border-radius: 0 0 100px 100px;*/
            /*}*/
    
        </style>
    
    
    
    <body>
    
    <div id = 'app' >
        <div class="left-circle red" :style='one' id ='d1'>
        </div>
        <div class="right-circle green" :style="two"  >
        </div>
    </div>
    </body>
    
    
    <script src="js/vue.js"></script>
    <script>
        let count=0;
    
        let app = new Vue({
            el: '#app',
            data: {
                // transform:rotate(190deg);
                one: {transform: 'rotate(' + count + 'deg)'},
                two: {transform: 'rotate(' + count + 'deg)'},
    
            },
        });
        setInterval(function(){
    
                        count=count+20;
                        app.one.transform = 'rotate('+count+'deg)';
                        app.two.transform = 'rotate('+count+'deg)';
                        console.log(count);
                        }, 1);
    
    
    </script>
    
  • 相关阅读:
    Dreamweaver中SourceAnyWhere的使用
    访问被拒绝:“AjaxPro”的解决方案
    NDoc1.3.1使用手册
    程序中操作Excel
    模拟提交程序相关专题
    利用SMTP服务发送电子邮件
    如何使用树形控件
    GDI+简单使用例子
    程序中操作Word
    签名工具使用介绍
  • 原文地址:https://www.cnblogs.com/cheng825/p/11839925.html
Copyright © 2020-2023  润新知