环形时钟动态走动动画效果
代码语言:html
所属分类:动画
代码描述:环形时钟动态走动动画效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
@import url('https://fonts.googleapis.com/css?family=Fascinate&display=swap');
* {
position: relative;
}
body {
font-family: 'Fascinate', cursive;
font-size: 35px;
display: flex;
justify-content: center;
align-items:center;
flex-direction:column;
height:100vh;
padding:0;
margin:0;
background: #21034f;
background: radial-gradient(ellipse at center, #21034f 0%,#21034f 53%,#10012b 100%);;
}
svg {
width:500px;
}
circle {
fill: none;
stroke: #7f00f566;
stroke-width: 6px;
}
.hour {
.........完整代码请登录后点击上方下载按钮下载查看
网友评论0