css+div实现播放按钮点击动画效果代码

代码语言:html

所属分类:其他

代码描述:css+div实现播放按钮点击动画效果代码

代码标签: css div 播放 按钮 点击 动画

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

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

<head>
  <meta charset="UTF-8">
  

  
<style>
body {
	margin: 0;
	padding: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e6e6e6;
	--clip: #e6e6e6;
}

.content {
	width: 38vmin;
	height: 15vmin;
	background: #2b6ea1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10vmin;
	box-shadow: 0 1px 0 1px #0002, 0 1vmin 0 0 #1f5176, 0 1.5vmin 0 0 #1f5176, 0 1.5vmin 0 1px #0004, 0 -1px 0 1px #0002, 0 calc(1.5vmin + 1px) 5px #fff6;
	transition: all 0.5s ease 0s;
}

.content:hover {
	transform: translateY(5px);
	transition: all 0.5s ease 0s;
	box-shadow: 
		0 1px 0 1px #0002, 
		0 calc(1vmin - 5px) 0 0 #2c4050, 
		0 calc(1.5vmin - 5px) 0 0 #2c4050, 
		0 calc(1.5vmin - 5px) 0 1px #0004, 
		0 -1px 0 1px #0002, 
		0 calc(1.5vmin - 4px) 5px #fff6;
}


.letter-p {
	b.........完整代码请登录后点击上方下载按钮下载查看

网友评论0