css+js实现罗盘时钟转动走动效果代码
代码语言:html
所属分类:其他
代码描述:css+js实现罗盘时钟转动走动效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body {
background-color: #f4f4dd;
}
#seconds, #minutes, #hours {
position: fixed;
border-radius: 50%;
top: calc(50% - 127px);
left: calc(50% - 127px);
transform: rotateZ(0deg);
transition: all 0.3s cubic-bezier(0.77, 1.76, 0.4, 0.77);
width: 255px;
height: 255px;
background-image: url("//repo.bfw.wiki/bfwrepo/images/clock/5928669a17321feb5f00e808d6b61bc4.png");
background-size: 255px;
background-repeat: no-repeat;
background-position: center;
z-index: 1;
}
#minutes {
top: calc(50% - 100px);
left: calc(50% - 100px);
width: 200px;
height: 200.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0