<view>
<scroll-view class="wrap" scroll-x="true" scroll-left="120">
<view class="kkkk">
<view class="flex-row">
<view class="wh bg-blue">1</view>
<view class="wh bg-blue">2</view>
<view class="wh bg-blue">3</view>
<view class="wh bg-blue">4</view>
<view class="wh bg-blue">5</view>
<view class="wh bg-blue">6</view>
</view>
</view>
</scroll-view>
</view>
.kkkk {
display: inline-block;
-webkit-animation: mymove 40s linear infinite;
-o-animation: mymove 40s linear infinite;
position:relative;
/* animation: mymove 5s infinite;
animation-timing-function: linear; */
}
@keyframes mymove {
from {
right: 0%;
}
to {
right: 50%;
}
}
@-webkit-keyframes mymove
/* Safari and Chrome */
{
from {
right: 0%;
}
to {
right: 50%;
}
}