gsap模拟火苗动画效果代码
代码语言:html
所属分类:动画
代码描述:gsap模拟火苗动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <style> body { background-color: #1c1c1c; overflow: hidden; text-align:center; display: flex; align-items: center; justify-content: center; } body, html { height: 100%; width: 100%; margin: 0; padding: 0; } svg { width: 100%; height: 100%; visibility: hidden; } </style> </head> <body > <svg id="mainSVG" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"> <linearGradient id="grad1" x1="393.05" y1="391.01" x2="393.05" y2="147.71" gradientUnits="userSpaceOnUse"> <stop offset="0" stop-color="#35AAF9"/> <stop offset="1" stop-color="#993BDC"/> </linearGradient> <linearGradient id="grad2" x1="393.05" y1="391.01" x2="393.05" y2="247.71" gradientUnits="userSpaceOnUse"> <stop offset="0" stop-color="#FFEE2A"/> <stop offset="1" stop-color="#35AAF9"/> </linearGradient> <linearGradient id="grad3" x1="393.05" y1="551.01" x2="393.05" y2="347.71" gradientUnits="userSpaceOnUse"> <stop offset="0" stop-color="#D93964"/> <stop offset="1" stop-color="#8D2AE6"/> </linearGradient> <linearGradient id="grad4" x1="393.05" y1="351.01" x2="393.05" y2="207.71" gradientUnits="userSpaceOnUse"> <stop offset="0" stop-color="#EF5927"/> <stop offset="1" stop-color="#F72785"/> </linearGradient> <g > <g id="fat" stroke="#DC2922" fill="none" stroke-linecap="round" stroke-miterlimit="10" stroke-width="4"> <path d="M349.55,495.05l100.29-.1h-.29"/> <line x1="309.55" y1="480.95" x2="489.55" y2="480.77"/> <line x1="284.55" y1="465.95" x2="514.55" y2="465.73"/> <line x1="265.55" y1="450.95" x2="533.55" y2="450.69"/> <line x1="250.55" y1="435.9.........完整代码请登录后点击上方下载按钮下载查看
网友评论0