1. 程式人生 > >微信小程序-通知公告滾動提示

微信小程序-通知公告滾動提示

white mat lin 小程序 animation pre cli -s first

wxml如下:
       

<view class=‘scroll_view_border‘>
<view class="srcoll_view" bindtap="textclick">這武器那都好,就是不吃藥只能戰鬥15秒,15秒內不是你死就是我亡,這才是90級史詩該有的王者風範!</view>
</view>

wxss如下:

 

.srcoll_view{
position: absolute;
top:0rpx;
height: 100rpx;
font-size: 30rpx;
white-space: nowrap;
line-height: 100rpx;
color: #00bff3;
animation:myfirst 20s linear infinite;
}
@keyframes myfirst
{
  0% {margin-left:750rpx;}
  100% {margin-left:-1500rpx;}
}
.scroll_view_border{
position: relative;
width: 100%;
background: rgba(0, 0, 0, 0.2);
height: 100rpx;
overflow: hidden;
}
js------沒有

微信小程序-通知公告滾動提示