美文网首页
背景渐变色

背景渐变色

作者: 一叶忆春秋 | 来源:发表于2020-06-10 20:18 被阅读0次

body{

    margin: 0;

    padding: 0;

    width: 100%;

    height: 100%;

    background-image: linear-gradient(125deg,#f6e58d,#ffbe76,#ff7979,#badc58,#dff9fb);

    background-size: 400%;

    animation: bganimation 15s infinite;

}

@keyframes bganimation{

    0%{

        background-position: 0% 50%;

    }

    50%{

        background-position: 100% 50%;

    }

    100%{

        background-position: 0% 50%;

    }

}

颜色网站:https://flatuicolors.com/palette/au

相关文章

网友评论

      本文标题:背景渐变色

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