怎么设置轮播图的轮播速度
跑马灯接口-https://help.fanruan.com/finereport/doc-view-4299.html
换成这个,貌似interval是控制速度的参数,你试试
setTimeout(function() {
_g().getWidgetByName('report0').startMarquee({
offset: 1,
interval: 0.1,
stopOnHover: true,
to:'top'})
},1000);
startMarquee 这个函数是可以设置参数的,offset是移动的像素,interval是每次移动的间隔时间。你调整这两个参参数就能调整速度。