css布局实现一只漂亮彩色鹦鹉效果代码

代码语言:html

所属分类:布局界面

代码描述:css布局实现一只漂亮彩色鹦鹉效果代码

代码标签: 一只 漂亮 彩色 鹦鹉 效果

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


<!DOCTYPE html>
<html lang="en" >

<head>

  <meta charset="UTF-8">
  

  
  
<style>
body {
	background: black;
}
.container {
	position: relative;
	width: 900px;
	height: 963px;
	margin: 0 auto;
}
.loro {
	transform: scale(0.7);
}
.circulo {
	position: absolute;
	transform: rotate(142deg);
	border-radius: 655px 643px 400px 990px;
	height: 230px;
	width: 196px;
	margin: 35px 263px;
	background: rgb(180, 227, 145);
	background: -webkit-linear-gradient(
		-45deg,
		rgba(180, 227, 145, 1) 0%,
		rgba(97, 196, 25, 1) 50%,
		rgba(180, 227, 145, 1) 100%
	);
	background: linear-gradient(
		135deg,
		rgba(180, 227, 145, 1) 0%,
		rgba(97, 196, 25, 1) 50%,
		rgba(180, 227, 145, 1) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b4e391', endColorstr='#b4e391',GradientType=1 );
}
.cuerpo {
	position: absolute;
	border-radius: 0px 370px 90px 439px;
	transform: rotate(-160deg);
	box-shadow: inset 1px 1px 3px 1px #333;
	background: rgb(19, 242, 19);
	background: linear-gradient(
		to bottom,
		rgba(19, 242, 19, 1) 2%,
		rgba(13, 173, 43, 1) 13%,
		rgba(13, 173, 43, 1) 87%,
		rgba(19, 242, 19, 1) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#13f213', endColorstr='#13f213',GradientType=0 );
	height: 293px;
	width: 483px;
	margin: 250px 273px;
}
.ala {
	position: absolute;
	border-radius: 145px 412px 30px 300px;
	transform: rotate(-353deg);
	background: linear-gradient(
		135deg,
		rgba(13, 173, 43, 1) 0%,
		rgba(13, 173, 43, 0.99) 5%,
		rgba(17, 37, 216, 0.94) 30%,
		rgba(.........完整代码请登录后点击上方下载按钮下载查看

网友评论0