效果图:
DOM:
<div>
<img src="http://pics4.baidu.com/feed/3801213fb80e7bec70739c1b83cebc3e99506b81.jpeg?token=de56394c09656ca554744bf001f2d130&s=D53AA375CD88745D882B156F0300E078"/>
<div class="arr-box">
<div class="arr"></div>
</div>
</div>
CSS:
<style>
img{
object-fit:cover;
width:100%;
height:100%;
}
.arr-box{
position:relative;
height: 100px;
width :100%;
}
.arr{
height: 100%;
width :52px;
background: url('./images/up.png') center center no-repeat;
background-size: 52px 52px;
position:absolute;
left: 48%;
<!-- animation:movetip 1s infinite; -->
}
@keyframes movetip
{
from {top:0px;}
to {top:-10px;}
}
</style>