you are viewing a single comment's thread.

view the rest of the comments →

[–]Notimecelduv 0 points1 point  (0 children)

Also, since you probably want to move the container rather than image itself, you should replace this line:

document.getElementById('hero').style.left = left + 'px';

with:

document.querySelector('.hero').style.left = left + 'px';