身体各部位样式详解——身体 - lancer07/css3Ultraman GitHub Wiki

身体

奥特曼身体

html结构

<div class="body">
  <div class="light"><span></span></div>
</div>
<div class="left_hand"></div>
<div class="right_hand"></div>

less样式

.body{
		width:100px;
		height:80px;
		background:#fff;
		border:7px solid #000;
		position:absolute;
		top:180px;
		left:50px;
		border-radius:0 0 20% 20%;
		z-index:-1;
		.light{
			width:40px;
			height:40px;
			border:3px solid #000;
			position:relative;
			top:20px;
			left:30px;
			background:red;
			transform:rotate(-45deg);
			span{
				width:8px;
				height:8px;
				border:2px solid #000;
				background:#48e1e7;
				display:block;
				position:absolute;
				left:3px;
				top:26px;
				border-radius:50%;
				z-index:2;
				animation:jump 0.5s infinite;
			}
		}
	}
	.hand{
		width:30px;
		height:100px;
		border-radius:60% 60% 50% 50%;
		border:7px solid #000;
		position:absolute;
		background:#fff;
	}
	.left_hand{
		.hand;
		top:160px;
		left:30px;
	}
	.right_hand{
		.hand;
		top:160px;
		left:90px;
		transform:rotate(-90deg);
	}
⚠️ **GitHub.com Fallback** ⚠️