svg+css实现电话来电动画图标效果代码
代码语言:html
所属分类:动画
代码描述:svg+css实现电话来电动画图标效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
@import url("https://fonts.googleapis.com/css?family=Roboto:400,400i,700");
html,
body {
height: 100%;
box-sizing: border-box;
padding: 0;
margin: 0;
}
html {
font-family: "Roboto";
background-color: #0f111e;
}
body {
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.ripple {
position: absolute;
z-index: -1;
inset: 0;
background-origin: content-box;
background-position: center;
background-repeat: no-repeat;
background-image: radial-gradient(circle at center, transparent, #ededed33 1%, transparent 3%), radial-gradient(circle at center, transparent, #ededed33 10%, transparent 13%), radial-gradient(circle at center, transparent, #ededed33 20%, transparent 23%);
animation-name: ripple;
animation-timing-function: ease-out;
animation-duration: 3s;
animation-iteration-count: infinite;
}
.icon {
background-color: #f5b546;
display: flex;
align-items: center;
justify-content: center;
width: 96px;
height: 96px;
border-radius: 50%;
animation-name: pulse;
animation-timing-function: ease-out;
animation-duration: 3s;
animation-iteration-count: infinite;
box-shado.........完整代码请登录后点击上方下载按钮下载查看
网友评论0