html:
<view class="in_scro"> <view class="in_scrview">恭喜139******1用戶約看特價房</view> <view class="in_scrview">恭喜139******1用戶約看特價房</view> <view class="in_scrview">恭喜139******1用戶約看特價房</view> <view class="in_scrview">恭喜139******1用戶約看特價房</view> <view class="in_scrview">恭喜139******1用戶約看特價房</view> <view class="in_scrview">恭喜139******1用戶約看特價房</view> </view>
css:
/* 跑馬燈 */ .in_scro { height: 150px; width: 80%; margin: 15px auto; overflow: hidden; } .in_scrview { color: #000000; font-size: 15px; height: 30px; line-height: 30px; text-align: center; animation: myMove 2s linear infinite; animation-fill-mode: forwards; } /* .in_scrview:nth-child(even) { color: #686767; font-size: 16px; } */ /*文字無縫滾動*/ @keyframes myMove { 0% { transform: translateY(0); } 50% { transform: translateY(-30px); } 100% { transform: translateY(-60px); } }