美文网首页
css的变量使用和修改值

css的变量使用和修改值

作者: 前端金城武 | 来源:发表于2021-06-23 11:23 被阅读0次
    //dom部分
        <div id="jrhdfx" class="page_style1" ref="UI">
    </div>
    
    
    //js部分
                    this.$refs.UI.style.setProperty("--yvalue",this.scrollval+'px');
                    this.$refs.UI.style.setProperty("--yvalue2",this.scrollval+'px');
    
    //css部分
        --yvalue:0px;
            --yvalue2:0px;
            @keyframes slide {  from {top: var(--yvalue;)}  to {top: var(--yvalue2);}}
    

    相关文章

      网友评论

          本文标题:css的变量使用和修改值

          本文链接:https://www.haomeiwen.com/subject/mrqbyltx.html