css单选radio按钮样式css多选框checkbox样式css响应式汉堡菜单(左滑、抽屉)css实现遮罩层弹出效果一组好看的css按钮效果(6种)css实现select下拉选择框css实现选项卡功能css实现下拉菜单css按钮样式代码(16种)css实现手风琴效果css图片轮播效果css进度条样式css实现侧边栏菜单css加载动画css背景动画效果css开关按钮样式(18种)css炫酷的圆形菜单css提示tooltip效果css手风琴_好看的Gallery伸缩效果css表格样式css分段控件导航栏css折角效果css粒子背景动画效果css进度圆圈连线css响应式分页样式代码css各种天气样式动画图标css层叠卡片滑出特效css下拉Dropdown菜单css圆圈按钮tip提示特效css和svg圆圈进度样式代码css动画404页面代码css爱心跳动动画代码css绘制逼真玻璃球效果css模拟开关灯特效创意css网格布局带动画效果css星级打分radio五角星css卡片悬浮翻转特效div上下浮动纯css动画css时间轴样式(timeLine)css文字循环翻滚动画效果css输入框动效css鼠标悬停缩放比例效果css模糊背景毛玻璃效果css实现小球循环跳动动画css实现标签样式Tagscss进度条阴影动画css绘制的小鸟css svg按钮冒泡动画特效css svg蓝色波浪动画特效css创意svg菜单栏水滴动画css文字进度条的实现CSS实现内容折叠/展开效果CSS3手机充电特效css实现鼠标点击拖拽效果CSS实现一个计时器纯CSS渐变绘制 Chrome 图标CSS 渐变来实现波浪动画

css svg按钮冒泡动画特效


源码

<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<defs><filter id="gooey">
<feGaussianBlur in="SourceGraphic" stdDeviation="5" result="blur"></feGaussianBlur><feColorMatrix in="blur" type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 19 -9" result="highContrastGraphic"></feColorMatrix><feComposite in="SourceGraphic" in2="highContrastGraphic" operator="atop"></feComposite>
</filter></defs>
</svg>
<button id="gooey-button">
https://www.fly63.com
<span class="bubbles">
<span class="bubble"></span>
<span class="bubble"></span>
<span class="bubble"></span>
<span class="bubble"></span>
<span class="bubble"></span>
<span class="bubble"></span>
<span class="bubble"></span>
<span class="bubble"></span>
<span class="bubble"></span>
<span class="bubble"></span>
</span>
</button>

<style type="text/css">
body,html {
align-items: center;
background-color: #0c1016;
display: flex;
font-family: "Roboto";
font-size: 10px;
height: 100%;
justify-content: center;
margin: 0;
padding: 0;
width: 100%
}

* {
box-sizing: border-box
}

svg {
position: absolute;
top: -4000px;
left: -4000px
}

#gooey-button {
padding: 1rem;
font-size: 2rem;
border: 0;
color: #0c1016;
filter: url("#gooey");
position: relative;
background-color: #00FF80
}

#gooey-button:focus {
outline: 0
}

#gooey-button .bubbles {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0
}

#gooey-button .bubbles .bubble {
background-color: #00FF80;
border-radius: 100%;
position: absolute;
top: 0;
left: 0;
display: block;
z-index: -1
}

#gooey-button .bubbles .bubble:nth-child(1) {
left: 13px;
width: 25px;
height: 25px;
animation: move-1 3.02s infinite;
animation-delay: .2s
}

#gooey-button .bubbles .bubble:nth-child(2) {
left: 18px;
width: 25px;
height: 25px;
animation: move-2 3.04s infinite;
animation-delay: .4s
}

#gooey-button .bubbles .bubble:nth-child(3) {
left: 71px;
width: 25px;
height: 25px;
animation: move-3 3.06s infinite;
animation-delay: .6s
}

#gooey-button .bubbles .bubble:nth-child(4) {
left: 35px;
width: 25px;
height: 25px;
animation: move-4 3.08s infinite;
animation-delay: .8s
}

#gooey-button .bubbles .bubble:nth-child(5) {
left: 34px;
width: 25px;
height: 25px;
animation: move-5 3.1s infinite;
animation-delay: 1s
}

#gooey-button .bubbles .bubble:nth-child(6) {
left: 36px;
width: 25px;
height: 25px;
animation: move-6 3.12s infinite;
animation-delay: 1.2s
}

#gooey-button .bubbles .bubble:nth-child(7) {
left: 91px;
width: 25px;
height: 25px;
animation: move-7 3.14s infinite;
animation-delay: 1.4s
}

#gooey-button .bubbles .bubble:nth-child(8) {
left: 62px;
width: 25px;
height: 25px;
animation: move-8 3.16s infinite;
animation-delay: 1.6s
}

#gooey-button .bubbles .bubble:nth-child(9) {
left: 57px;
width: 25px;
height: 25px;
animation: move-9 3.18s infinite;
animation-delay: 1.8s
}

#gooey-button .bubbles .bubble:nth-child(10) {
left: 49px;
width: 25px;
height: 25px;
animation: move-10 3.2s infinite;
animation-delay: 2s
}

@keyframes move-1 {
0% {
transform: translate(0,0)
}
99% {
transform: translate(0,-109px)
}
100% {
transform: translate(0,0);
opacity: 0
}
}

@keyframes move-2 {
0% {
transform: translate(0,0)
}
99% {
transform: translate(0,-76px)
}
100% {
transform: translate(0,0);
opacity: 0
}
}

@keyframes move-3 {
0% {
transform: translate(0,0)
}
99% {
transform: translate(0,-125px)
}
100% {
transform: translate(0,0);
opacity: 0
}
}

@keyframes move-4 {
0% {
transform: translate(0,0)
}
99% {
transform: translate(0,-66px)
}
100% {
transform: translate(0,0);
opacity: 0
}
}

@keyframes move-5 {
0% {
transform: translate(0,0)
}
99% {
transform: translate(0,-74px)
}
100% {
transform: translate(0,0);
opacity: 0
}
}

@keyframes move-6 {
0% {
transform: translate(0,0)
}
99% {
transform: translate(0,-122px)
}
100% {
transform: translate(0,0);
opacity: 0
}
}

@keyframes move-7 {
0% {
transform: translate(0,0)
}
99% {
transform: translate(0,-80px)
}
100% {
transform: translate(0,0);
opacity: 0
}
}

@keyframes move-8 {
0% {
transform: translate(0,0)
}
99% {
transform: translate(0,-89px)
}
100% {
transform: translate(0,0);
opacity: 0
}
}

@keyframes move-9 {
0% {
transform: translate(0,0)
}
99% {
transform: translate(0,-72px)
}
100% {
transform: translate(0,0);
opacity: 0
}
}

@keyframes move-10 {
0% {
transform: translate(0,0)
}
99% {
transform: translate(0,-120px)
}
100% {
transform: translate(0,0);
opacity: 0
}
}
</style>


链接: https://www.fly63.com/course/33_1622