cover-view 不支持css3动画不生效
<cover-view class='scroll_view_border'>
<cover-view class="srcoll_view" bindtap="textclick">这武器那都好,就是不吃药只能战斗15秒,15秒内不是你死就是我亡,这才是90级史诗该有的王者风范!</cover-view>
</cover-view>
.srcoll_view{
position: absolute;
top:0px;
height: 100px;
font-size: 30px;
white-space: nowrap;
line-height: 100px;
color: #00bff3;
animation:myfirst 20s linear infinite;
}
[@keyframes](/user/keyframes) myfirst {
0% {
margin-left: 750px;
}
100% {
margin-left: -1500px;
}
}
.scroll_view_border{
position: relative;
width: 100%;
background: rgba(0, 0, 0, 0.2);
height: 100px;
overflow: hidden;
}
cover-view{
}