cover-view 不支持css3动画不生效
发布于 6 年前 作者 lujie 11972 次浏览 来自 问答


<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{

}
1 回复

本来我在看你的bug。。看到你里面的文字,,我忍不住笑了。。

回到顶部