css+js实现文字环绕logo旋转动画效果代码
代码语言:html
所属分类:动画
代码描述:css+js实现文字环绕logo旋转动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<style>
* {
/* 常规初始化 */
margin: 0;
padding: 0;
box-sizing: border-box;
/* 解决手机浏览器点击有选框的问题 */
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
/* 常规居中显示、简单背景颜色 */
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
min-height: 100vh;
background-color: #eee;
}
.box {
/* 父盒子内的 logo和文字 都居中显示 */
display: flex;
justify-content: center;
align-items: center;
/* 父盒子宽高 */
width: 60vmin;
height: 60vmin;
/* 测试查看大小情况 */
/* background-color: #ccc; */
/* ○ 父盒子无所谓 */
border-radius: 50%;
position: relative;
}
.box .logo {
/* 中间 logo 宽高 */
width: 70%;
height: 70%;
.........完整代码请登录后点击上方下载按钮下载查看
网友评论0