0
영어 원어민이 아니므로, 제 풀 단어를 아쉽게 생각합니다. FramerJS : 배열 재정렬
나는 그것이 작동하지 않는
# item layers
a = new Layer({x:20, width:80, height:80, image:"images/a.png"})
b = new Layer({x:120, width:80, height:80, image:"images/b.png"})
c = new Layer({x:220, width:80, height:80, image:"images/c.png"})
d = new Layer({x:320, width:80, height:80, image:"images/d.png"})
e = new Layer({x:420, width:80, height:80, image:"images/e.png"})
f = new Layer({x:520, width:80, height:80, image:"images/f.png"})
# item layers array - draggable
item = [a, b, c, d, e, f]
for i in [0..5]
\t item[i].draggable.enabled = true
\t item[i].draggable.speedY = 0
\t item[i].borderRadius = 100
\t item[i].opacity = 0.5
\t item[i].centerY() \t
# item reorder
item[i].on Events.DragMove, ->
if item[i].midX > item[i+1].midX
item[i+1].animate
properties:
x:item[i+1].x - 100
else if item[i].midX < item[i-1].midX
item[i-1].animate
properties:
x:item[i-1].x + 100
달성하려는 목표와 문제가 명확하지 않습니다. – frhd
FramerJS/Framer Studio에 따라 질문하는 가장 좋은 방법은 Google의 전용 Facebook-Group : https : //www.facebook.com/groups/framerjs/입니다. – wottpal