javascript - jQuery animate to screen using (x)% -
i running little problem in want space out div div (x)px.
currently have original div @
left: '30%';
but want second div be
left: '30%' + (width of first div) + (5px of border space);
currently can't work since percentage can't added px value (i believe).
just wondering if there way around this, easy understand. thanks!
yes can added. use calc()
left: calc(30% + 250px + 5px); /* assuming width of div 250px;*/
edit: op needed animation. demo
Comments
Post a Comment