若隐若现的芯片

先看效果:
在这里插入图片描述
再看代码:

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>若隐若现的芯片</title><script src="https://unpkg.co/gsap@3/dist/gsap.min.js"></script><style>body {background-color: #000000;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;}.ell, #ai {fill: none;}</style>
</head>
<body>
<svg id="mainSVG" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><defs><linearGradient id="aiGrad" x1="513.98" y1="290" x2="479.72" y2="320" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#000" stop-opacity="0" /><stop offset=".15" stop-color="#EF476F" /><stop offset=".4" stop-color="#359eee" /><stop offset=".6" stop-color="#03cea4" /><stop offset=".78" stop-color="#FFC43D" /><stop offset="1" stop-color="#000" stop-opacity="0" /></linearGradient></defs><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><ellipse class="ell" cx="400" cy="300" rx="80" ry="80" /><path id="ai" opacity=0.85 d="m417.17,323.85h-34.34c-3.69,0-6.67-2.99-6.67-6.67v-34.34c0-3.69,2.99-6.67,6.67-6.67h34.34c3.69,0,6.67,2.99,6.67,6.67v34.34c0,3.69-2.99,6.67-6.67,6.67Zm-5.25-12.92v-21.85c0-.55-.45-1-1-1h-21.85c-.55,0-1,.45-1,1v21.85c0,.55.45,1,1,1h21.85c.55,0,1-.45,1-1Zm23.08-16.29h-11.15m-47.69,0h-11.15m70,10.73h-11.15m-47.69,0h-11.15m40.37,29.63v-11.15m0-47.69v-11.15m-10.73,70v-11.15m0-47.69v-11.15" stroke="url(#aiGrad)" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" />
</svg>
</body>
<script>gsap.config({trialWarn: false});let select = s => document.querySelector(s),toArray = s => gsap.utils.toArray(s),mainSVG = select('#mainSVG'),allEll = toArray('.ell'),colorArr = ['#359EEE', '#FFC43D','#EF476F','#03CEA4']let colorInterp = gsap.utils.interpolate(colorArr);gsap.set(mainSVG, {visibility: 'visible'})function animate (el, count) {let tl = gsap.timeline({defaults: {ease: 'sine.inOut'},repeat: -1});gsap.set(el, {opacity:1- count/(allEll.length),stroke: colorInterp(count/(allEll.length))})tl.to(el, {attr: {ry: `-=${count*2.3}`,rx: `+=${count*1.4}`},ease: 'sine.in'}).to(el, {attr: {ry: `+=${count*2.3}`,rx: `-=${count*1.4}`},ease: 'sine'}).to(el, {duration: 1,rotation: -180,transformOrigin: '50% 50%'}, 0).timeScale(0.5)}allEll.forEach((c, i) => {gsap.delayedCall(i/(allEll.length-1), animate, [c, i+1])})gsap.to('#aiGrad', {duration: 4,delay: 0.75,attr: {x1: '-=300',x2: '-=300'},scale: 1.2,transformOrigin: '50% 50%',repeat: -1,ease: 'none'})gsap.to('#ai', {duration: 1,scale: 1.1,transformOrigin: '50% 50%',repeat: -1,yoyo: true,ease: 'sine.inOut'})</script>
</html>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/550.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

前端excel文件处理,vue2 、file-saver、xlsx, excel文件生成与excel文件链接数据导出

1、前端excel文件生成 安装插件 npm install file-saver --save如使用TS开发&#xff0c;可安装file-saver的TypeScript类型定义 npm install types/file-saver --save-dev下载文件流 import { saveAs } from file-saver /**** param {*} fileStream // 文件流* param {*} …

No CMAKE_Swift_COMPILER could be found问题解决

编译OpenCV的IOS平台包,出错: CMake Error at CMakeLists.txt:20 (enable_language): No CMAKE_Swift_COMPILER could be found. 出错定位,原因是启用Swift语言时没有找到CMAKE_Swift_COMPILER变量 CMAKE官方文档说明启用Swift语言方法 cmake 3.15开始支持swift 查找swift …

数据库监控与调优【十三】—— LIMIT语句优化

LIMIT语句优化 LIMIT语句使用规则 limit<offset>, <size> offset&#xff1a;返回结果第一行的偏移量&#xff08;想要跳过多少行&#xff09;size&#xff1a;指定返回多少条 举例说明 -- 查询第1页时&#xff0c;花费92ms SELECT * FROM employees LIMIT 0,…

【容灾系统搭建】网络杂谈(1)之容灾系统如何搭建?

涉及知识点 什么是容灾&#xff0c;容灾系统的建设&#xff0c;容灾系统的结构模型&#xff0c;容灾平台。深入了解容灾技术。 原创于&#xff1a;CSDN博主-《拄杖盲学轻声码》&#xff0c;更多内容可去其主页关注下哈&#xff0c;不胜感激 文章目录 涉及知识点前言1.容灾系统…

ElasticSearch的核心概念简单描述

我正在参加「掘金启航计划」 ES核心概念 ES是面向文档,下面表格是和关系型数据库的对比,一切都是JSON 关系数据库(Mysql)ES数据库(database)索引(indices) 和数据库一样表(tables)types 慢慢会被弃用 7.0已经过时 8.0会彻底废弃行(rows)documents (数据)文档字段(columns)fi…

Navicat连接oracle

1、官网下载oracle instant client客户端&#xff08;版本自选&#xff09; Oracle Instant Client Downloads 下载后解压 2、navicat配置 在工具-> 选项 -> OCI 或环境中&#xff0c;选择在步骤 1 解压目录的 oci.dll 3、重新启动 Navicat 4、配置oracle连接即可 参考…

别再分库分表了,试试TiDB!

什么是NewSQL 传统SQL的问题 升级服务器硬件 数据分片 NoSQL 的问题 优点 缺点 NewSQL 特性 NewSQL 的主要特性 三种SQL的对比 TiDB怎么来的 TiDB社区版和企业版 TIDB核心特性 水平弹性扩展 分布式事务支持 金融级高可用 实时 HTAP 云原生的分布式数据库 高度兼…

工程安全监测无线振弦采集仪在建筑物的应用分析

工程安全监测无线振弦采集仪在建筑物的应用 工程安全监测无线振弦采集仪是一种在建筑物中应用的重要设备。它通过无线采集建筑物内部的振动信息&#xff0c;对建筑物的安全性进行监测和评估&#xff0c;为建筑物的施工和使用提供了可靠的技术支持。本文将详细介绍工程安全监测…

【GESP】2023年06月图形化一级 -- 去旅行

文章目录 去旅行1. 准备工作2. 功能实现3. 设计思路与实现&#xff08;1&#xff09;角色、舞台背景设置a. 角色设置b. 舞台背景设置 &#xff08;2&#xff09;脚本编写a. 角色&#xff1a;Avery Walking 4. 评分标准 去旅行 1. 准备工作 &#xff08;1&#xff09;删除默认小…

golang,OpenGL,计算机图形学(三)

代码仓库 https://github.com/phprao/go-graphic 颜色 光源照射到物体上&#xff0c;一部分颜色被吸收&#xff0c;另一部分无法吸收的被反射到人眼&#xff0c;于是呈现出了颜色。 当我们把光源的颜色与物体的颜色值相乘&#xff08;而不是点乘&#xff09;&#xff0c;所…

同城跑腿独立版小程序 码科跑腿小程序 支持用户端 骑手端

是独立版哦&#xff0c;不是微擎的 搭建有点复杂&#xff0c;只要一步错就会导致骑手端来单没有声音提示. 多的也不介绍了&#xff0c;不知道的朋友可以百度一下码科跑腿就知道了&#xff01;

大数据的金融数据读取及分析(-)

由于考虑商业数据问题&#xff0c;我们用开源数据做演示 一.tushare开源数据 Tushare是一个免费、开源的python财经数据接口包。主要实现对股票等金融数据从数据采集、清洗加工到数据存储的过程&#xff0c;能够为金融分析人员提供快速、整洁、和多样的便于分析的数据&#x…