HTML5 CSS3 精美案例 : 实现VCD包装盒个性幻灯片
以下是一个简单的HTML和CSS代码示例,用于创建一个VCD包装盒个性幻灯片的效果。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VCD包装盒个性幻灯片</title>
<style>
body {
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: #333;
color: white;
font-family: Arial, sans-serif;
}
.vcd-box {
width: 200px;
height: 260px;
background: url('vcd-box.jpg') no-repeat;
background-size: cover;
position: relative;
box-shadow: 0 0 10px #000;
}
.vcd-box::before {
content: '';
position: absolute;
top: 10px;
left: 10px;
right: 10px;
bottom: 50px;
background: rgba(0, 0, 0, 0.5);
border-radius: 5px;
}
.vcd-box::after {
content: 'VCD\A 乐趣无穷';
position: absolute;
bottom: 10px;
left: 0;
width: 100%;
text-align: center;
font-size: 12px;
text-shadow: 0 0 10px #000;
}
.vcd-box:hover::before {
animation: glow 1s infinite alternate;
}
@keyframes glow {
from {
box-shadow: 0 0 10px #00f;
}
to {
box-shadow: 0 0 20px #0f0;
}
}
</style>
</head>
<body>
<div class="vcd-box"></div>
</body>
</html>
这段代码展示了如何使用CSS伪元素::before
和::after
来创建一个具有阴影和文本的VCD包装盒,并使用::before
伪元素上的动画使其发光。当鼠标悬停在幻灯片上时,伪元素的动画效果开始。这个示例简单易懂,并且可以根据需要进行拓展和定制。
评论已关闭