HTML鼠标移到“播放器”图片上,左右两边显示类似: < 和 > 播放按钮
时间: 2024-06-13 12:10:03 浏览: 118
播放器播放按钮
以下是HTML鼠标移到“播放器”图片上,左右两边显示类似: < 和 > 播放按钮的代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>播放器</title>
<style type="text/css">
.play-btn {
position: relative;
display: inline-block;
width: 200px;
height: 200px;
background-image: url("your-image-url");
background-size: cover;
}
.play-btn:hover:before {
content: "<";
position: absolute;
top: 50%;
left: 0;
transform: translate(-50%, -50%);
font-size: 50px;
color: white;
}
.play-btn:hover:after {
content: ">";
position: absolute;
top: 50%;
right: 0;
transform: translate(50%, -50%);
font-size: 50px;
color: white;
}
</style>
</head>
<body>
<div class="play-btn"></div>
</body>
</html>
```
当鼠标移到class为play-btn的div上时,会在左右两侧显示类似于<和>的播放按钮。其中:before和:after是伪元素,用于在元素的前面和后面插入内容。transform属性用于调整元素的位置,content属性用于插入内容。
阅读全文