<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>当前页面</title>
<style>
* {
margin: 0;
padding: 0;
}
.wrap {
width: 800px;
height: 400px;
position: relative;
}
.list {
width: 800px;
height: 400px;
list-style: none;
position: relative;
padding-left: 0;
}
.item {
/*叠在一起 */
position: absolute;
width: 100%;
height: 100%;
color: white;
font-size: 50px;
/*透明度*/
opacity: 0;
/*淡入淡出图片的效果*/
transition: all .8s;
}
.item:nth-child(1) {
background-color: yellowgreen;
}
.item:nth-child(2) {
background-color: red;