新年快乐文字描边动画效果

代码语言:html

所属分类:动画

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<html lang="en">
<head>
    <meta charset="UTF-8">

    <style>
@keyframes stroke
        {
            10% {
                stroke-dashoffset: 600;
            }
            70% {
                stroke-dashoffset: 0;
                fill: #FFF;
            }
            80% {
                stroke-dashoffset: 0;
                fill: #092951;
            }
            100% {
                stroke-dashoffset: 0;
                fill: #092951;
            }
        }

@-webkit-keyframes stroke
        {
            10% {
                stroke-dashoffset: 600;
            }
            70% {
                stroke-dashoffset: 0;
                fill: #FFF;
            }
            80% {
                stroke-dashoffset: 0;
                fill: #092951;
            }
   .........完整代码请登录后点击上方下载按钮下载查看

网友评论0