电脑重启之前就可以正常显示
但是重启之后
图片都无法显示了 我换个路径 换个图片一样不行
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.show{
width:200px;
height:100px;
border:dotted 2px rgb(121, 121, 129);
background-color: rgb(190, 179, 164);
position:relative;
margin-top:30px;
}
.show>div{
width:800px;
height:100px;
background-color: black;
position:absolute;
animation: move 9s linear infinite;
}
img{
width:200px;
height:00px;
display:inline;
}
@keyframes move{
0%{left: 0;
top:0}
25%{right:-600px;
top:0}
50%{right:-400px;
top:0}
75%{right:-200px;
top:0}
100%{right:0;
top:0}
}
</style>
</head>
<body>
<div class="show">
<div>
<img src="C:\Users\ASUS\Desktop\6--web前端\div布局\t1.jpg"/>
</div>
</div>
</body>
</html>
```