css实现有个水中火烈鸟眨眼睛展翅动画效果代码

代码语言:html

所属分类:动画

代码描述:css实现有个水中火烈鸟眨眼睛展翅动画效果代码

代码标签: 水中 烈鸟 眨眼睛 展翅 动画 效果

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


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

<head>

  <meta charset="UTF-8">
  

  
  
  
<style>
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

:root {
	--background: #fff;
	--scale: 100px;
	--transition: cubic-bezier(0, 0.46, 0, 1);
	--darkpink: #f18aab;
	--lightpink: #f12b64;
}

html,
body {
	height: 100%;
}
body {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-family: "Poppins", sans-serif;
	color: #a6c5bb;
	background: var(--background);
}
.container {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1rem 0;
	width: 492px;
	position: relative;
	transform: scale(0.8);
}

.flamingo {
	z-index: 2;
	position: relative;
	opacity: 1;
	width: 413px;
	height: 514px;
	transform: scale(0.8);
}
/* ---- Beak Start ---- */

.beak_dark {
	width: 70px;
	height: 56px;
	background: linear-gradient(#2b2b44, #0e041c);
	border-top-left-radius: 30px;
	position: absolute;
.........完整代码请登录后点击上方下载按钮下载查看

网友评论0