純CSS制作加


純CSS代碼加上<div>制作動畫版哆啦A夢(機器貓)

哆啦A夢(機器貓)我們大家一定都很熟悉,今天給大家演示怎么用純CSS代碼,來做一個動畫版的哆啦A夢.

效果圖:

下面代碼同學可以查看一下,每個線條及橢圓都是純CSS代碼生成。

首先分析結構

根據原圖,將哆啦A夢分為幾個結構,然后再分解其他部位。

  • 畫出各部分的形狀和顏色,然后使用絕對定位(absolute)和相對定位(relative)改變其位置。

  • 各種帶弧度形狀,使用border-radius屬性實現。

  • 傾斜角度,使用transform屬性實現。

  • 使用background屬性的-webkit-gradient() / -moz-linear-gradient() 畫出身體部分的線性色彩變化。

    html代碼如下:

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <title>哆啦A夢(機器貓)動畫版</title>
</head>
<body>
	<!-- content是整個哆啦A夢的主體 -->
	<div class="content">
		<!-- 哆啦A夢的頭部 -->
		<div class="head"></div>
		<!-- 哆啦A夢的臉部 -->
		<div class="face">
		</div>
		<div class="eye">
			<div></div>
			<div></div>
		</div>
		<div class="eye-2">
			<div>
				<div></div>
			</div>
			<div>
				<div></div>
			</div>
		</div>
		<!-- 哆啦A夢的鼻子 -->
		<div class="nose">
			<div class="nose-2"></div>
			<div class="nose-3"></div>
		</div>
		<!-- 哆啦A夢的胡子 -->
		<div class="huzi">
			<div></div>
			<div></div>
			<div></div>
			<div></div>
			<div></div>
			<div></div>
		</div>
		<div class="huzi2">
			<div></div>
			<div></div>
			<div></div>
			<div></div>
			<div></div>
			<div></div>
		</div>
		<!-- 哆啦A夢圍巾 -->
		<div class="weijin"></div>
	</div>
</body>
</html>

css代碼如下:

<style>
		/*給背景設置漸變色*/
		body {
		    background-image:linear-gradient(to right, #eea2a2 0%, #bbc1bf 19%, #57c6e1 42%, #b49fda 79%, #7ac5d8 100%);
		}
		/*給哆啦A夢整體設置寬度*/
		.content{
			width: 333px;
			height: 350px;
			position: relative;
			margin: 50px auto;
			/*讓content 執行keyframes動畫*/
			animation: play 5s linear infinite;
		}

		/*頭設置*/
		.head {
			width: 325px;
			height: 325px;
			border-radius: 50%;
			background-color: #0dacd7;
			border: 2px solid #555555;
			transition: 3s;
		}
		/*臉設置*/
		.face{
			width: 270px;
			height: 200px;
			background-color: white;
			border-radius: 130px;
			position: absolute;
			top: 115px;
			left: 31px;
			transition: 3s;
		}
		/*眼睛設置*/
		.eye {
			width: 158px;
			position: absolute;
			top: 82px;
			left: 90px;
			transition: 3s;
		}
		.eye>div{
			width: 75px;
			height: 90px;
			background-color: white;
			border: 2px solid black;
			border-radius: 40px;
			float: left;
			transition: 3s;
		}
		.eye-2>div{
			width: 17px;
			height: 30px;
			border-radius: 50%;
			background-color: black;
			position: relative;
		}
		.eye-2>div:nth-child(1){
			position: absolute;
			top: 116px;
			left: 136px;
		}
		.eye-2>div:nth-child(2){
			position: absolute;
			top: 116px;
			left: 184px;
		}
		.eye-2>div>div {
			width: 9px;
			height: 9px;
			background-color: white;
			border-radius: 50%;
			position: absolute;
			top: 13px;
			left: 5px;
		}
		/*鼻子設置*/
		.nose{
			width: 32px;
			height: 32px;
			background-color: #c93300;
			border-radius: 50%;
			position: absolute;
			top: 159px;
			left: 153px;
		}
		.nose-2 {
			width: 3px;
			height: 80px;
			background-color: black;
			position: absolute;
			top: 32px;
			left: 14px;
		}
		.nose-3 {
			width: 147px;
			height: 77px;
			border-bottom: 3px solid black;
			border-radius: 50%;
			position: absolute;
			top: 35px;
			left: -58px;
		}
		/*圍巾設置*/
		.weijin{
			width: 240px;
			height: 24px;
			background-color: #ab2800;
			border-radius: 9px;
			position: absolute;
			top: 305px;
			left: 45px;
		}
		/*胡子設置*/
		.huzi {
			position: absolute;
			top: 186px;
			left: 54px;
		}
		.huzi>div:nth-child(1){
			width: 60px;
			height: 2px;
			background-color: black;
			transform: rotate(15deg);
			transition: 3s;
		}

		.huzi>div:nth-child(2){
			width: 60px;
			height: 2px;
			background-color: black;
			margin-top: 20px;
			margin-bottom: 20px;
			transition: 3s;
		}
		.huzi>div:nth-child(3){
			width: 60px;
			height: 2px;
			background-color: black;
			transform: rotate(-15deg);

		}

		.huzi2 {
			position: absolute;
			top: 186px;
			left: 224px;
		}
		.huzi2>div:nth-child(1){
			width: 60px;
			height: 2px;
			background-color: black;
			transform: rotate(165deg);
		}

		.huzi2>div:nth-child(2){
			width: 60px;
			height: 2px;
			background-color: black;
			margin-top: 20px;
			margin-bottom: 20px;
		}
		.huzi2>div:nth-child(3){
			width: 60px;
			height: 2px;
			background-color: black;
			transform: rotate(-165deg);

		}
		/*設置哆啦A夢移動路徑的動畫*/
		@keyframes play {
			0{
				transform: rotate(0deg) translateX(0);

			}
			15%{
				transform:  translateX(400px) rotate(190deg);

			}
			30%{
				transform: translateX(0px) rotate(-80deg);
			}
			45%{
				transform: translateX(-400px) rotate(-175deg);
			}
			60%{
				transform: translateX(-100px) rotate(-20deg);
			}
			80%{
				transform: rotate(190deg) translateY(-300px);
			}
			100%{
				transform: rotate(-20	deg) translateY(200px);
			}
		}
	</style>


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM