css实现svg动画效果

代码语言:html

所属分类:动画

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

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

    <title> infinity jumping ink</title>
    <style>
        .bottom, .rh-line, .ibm-line {
            fill: none;
        }

        .bottom {
            stroke-width: inherit;
            stroke: #567;
            stroke-opacity: .3;
        }

        .rh-line, .ibm-line {
            stroke: #e00;
            animation: loop 3s linear infinite;
            stroke-dasharray: 0 28;
            stroke-linecap: round;
        }

        .finny {
            stroke-width: 1.43;
            animation: rot 36s linear infinite;
         .........完整代码请登录后点击上方下载按钮下载查看

网友评论0