svg+css轨迹运动动画效果代码

代码语言:html

所属分类:动画

代码描述:svg+css轨迹运动动画效果代码

代码标签: svg css 轨迹 动画

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

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <style>
        body{  background-color:#1d1f20;}body, html {    height: 100%;    width: 100%;    margin: 0;    padding: 0;}#container{  max-width:900px;  width:100%;  overflow:hidden;   position: absolute;  top: 50%;  left: 50%;  margin-right: -50%;  transform: translate(-50%, -50%);}/* Bottom hack for IE*/svg{  width:100%;  padding-bottom: 36.67%;  height: 1px;  overflow: visible; }
    </style>
</head>

<body>

    <div id="container"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMin slice" viewBox="0 0 600 220"><!-- Motion path --><path id="a" fill="none" stroke="#d3d3d3" stroke-width="10" d="M50 100s50 32 100-14 50 87 100-10 50 5 100 60 50-49 100 30 50-79 100-70"/><!-- Key points --><circle cx="50" cy="100" r="15" fill="#d3d3d3"/><circle cx="5.........完整代码请登录后点击上方下载按钮下载查看

网友评论0