我想制作一个圆形背景,以使用线性渐变逐渐填充。我有CSS和JavaScript文件,但只有我不知道如何在JS中选择线性渐变属性。

 <div id="circle" class="circleBase "></div>
    #circle{
        width: 300px;
        height: 300px;
        background-color:blue;
        background: linear-gradient(90deg, #FFC0CB 0%,white 100%);
    }

    function changeBackground() {
        var elem = document.getElementById("circle");
        var width = 1;
        var id = setInterval(frame, 10);
        function frame() {
            if (width >= 100) {
                clearInterval(id);
            } else {
               width++;
               elem.style = ????
            }
        }
    }

最佳答案

只需将其定义为字符串即可:

elem.style.background = 'linear-gradient(180deg, #FFC0CB 0%,white 100%)';




function changeBackground() {
        var elem = document.getElementById("circle");
        var width = 1;
        var id = setInterval(frame, 10);
        function frame() {
            if (width >= 100) {
                clearInterval(id);
            } else {
               width++;
               elem.style.background = 'linear-gradient(180deg, #FFC0CB 0%,white 100%)';
            }
        }
    }

 

#circle{
        width: 300px;
        height: 300px;
        background-color:blue;
        background: linear-gradient(90deg, #FFC0CB 0%,white 100%);
    }

<div id="circle"></div>
<button onclick="changeBackground()">Change!</button>

08-15 16:59