css播放暂停按钮点击效果代码

代码语言:html

所属分类:其他

代码描述:css播放暂停按钮点击效果代码

代码标签: css 播放 暂停 按钮 点击

下面为部分代码预览,完整代码请点击下载或在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