Forum Discussion

wujunmin's avatar
wujunmin
Advocate III
4 years ago

DIY Scroller By DAX

scrolling pictures (Row1, 3)same speed, different directiondifferent speedno blank

data

Measure

 

measure = 
VAR SVG_Table=ADDCOLUMNS('table', "Image",
"<image xlink:href='"&[URL]&"' x='"&([子索引]-1)*100 &"' y='"&([索引]-1)*100 &"' height='100' weight='100'>
    <animate attributeName='x' by='"&IF(MOD([索引],2)<>0,800,-800)&"' begin='0s' dur='10s' repeatCount='indefinite'/>
</image>")
Return
"<svg xmlns='http://www.w3.org/2000/svg' height='400' width='800'>"&
    CONCATENATEX(SVG_Table,[Image])&"
</svg>"

 

 

No RepliesBe the first to reply