div+css布局实现哆啦A梦眼球转动动画效果代码

代码语言:html

所属分类:动画

代码描述:div+css布局实现哆啦A梦眼球转动动画效果代码

代码标签: div css 哆啦A梦 眼球 转动 动画

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >
<head>
  <meta charset="UTF-8">
<style>
    body {

	margin: 0;
}

.body {
	background-color: #199bb5;
	width: 10vw;
	height: 9vw;
	position: absolute;
	top: 13vw;
	left: 2.5vw;
}

.helicopter {
	height: 100px;
	weight: 1px;
	border-left: 1px solid yellow;
	position: absolute;
}

.head {
	border-radius: 50%;
	background-color: #199bb5;
	width: 15vw;
	height: 14vw;
	position: absolute;
	top: 15vw;
	left: 45vw;
}

.tummy {
	border-radius: 90%;
	background-color: white;
	width: 8vw;
	height: 6vw;
	position: absolute;
	top: 2.3vw;
	left: 1vw;
	border: 0.5px solid black;
}

.tummy_pocket {
	border-radius: 50%;
	background-color: whitesmoke;
	width: 5vw;
	height: 4.5vw;
	position: absolute;
	border: 0.5px .........完整代码请登录后点击上方下载按钮下载查看

网友评论0