gsap+svg实现磨砂雾化透明圆形loading加载动画效果代码

代码语言:html

所属分类:加载滚动

代码描述:gsap+svg实现磨砂雾化透明圆形loading加载动画效果代码

代码标签: gsap svg 磨砂 雾化 透明 圆形loading 加载 动画

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

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">



    <style>
        body {
         background-color: #FFF;
         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">
<defs>
	    <radialGradient id="mainGrad" cx="400" cy="300" fx="400" fy="300" r="100" gradientUnits="userSpaceOnUse">
    <stop offset=".68" stop-color="#6334fb"/>
      <stop offset=".72" stop-color="#6639fb"/>
      <stop offset=".77" stop-color="#7248fb"/>
      <stop offset=".82" stop-color="#8561fb"/>
      <stop offset=".88" stop-color="#9f83fb"/>
      <stop offset=".93" stop-color.........完整代码请登录后点击上方下载按钮下载查看

网友评论0