I am fairly new to writing in html, css, and coding in javascript. I digress; i am trying to have an image of a gear rotate when the a user scrolls up and down the screen (i am hoping to give it an elevator effect when i add a belt). I am using the jquery $(window).scroll(function(). I know it is working because when i use console.log("hi") it writes every time i scroll. My problem is the .animate() function that doesn't seem to work. I even tried downloading "http://jqueryrotate.com/" and using that to rotate. Any help would be much appreciated!
    ## HTML ##
    <div class="left_pulley">
    <img src="gear2.png" />
    </div>
    <div class="right_pulley">
    <img src="gear2.png" />
    </div>
    ## CSS ##
.left_pulley
{
  position: absolute;
  margin: 0;
  padding: 0;
  top: 263px;
  left: 87%;
  height: 35px;
  width: 35px;
}
.left_pulley img
{
  width: 100%;
}
.right_pulley
{
  position: absolute;
  margin: 0;
  padding: 0;
  top: 263px;
  left: 94.2%;
  height: 35px;
  width: 35px;
}
.right_pulley img
      {
        width: 100%;
        }
 ## JS ##
First using .rotate({})
$(".left_pulley").rotate({bind:
  $(window).scroll(function() {
      if ($(this).scrollTop() > 0) {
        $(.left_pulley).rotate({
          angle: 0,
          animateTo: 180,
          })
      })
    })
  })
Now using .animate({}) to try and just move it at all.
$(window).scroll(function() {
    if ($(this).scrollTop() > 0) {
        var scott = $('img');
        scott.animate({
          left: 180
        }
    }
});
$(window).scroll(function() {
  if ($(this).scrollTop() > 0) {
    var scott = $('img');
    scott.animate({
        left: 180
      }
      function() {
        console.log("hi");
      }
    });
  console.log("hi2");
}
});.left_pulley {
  position: absolute;
  margin: 0;
  padding: 0;
  top: 263px;
  left: 87%;
  height: 35px;
  width: 35px;
}
.left_pulley img {
  width: 100%;
}
.right_pulley {
  position: absolute;
  margin: 0;
  padding: 0;
  top: 263px;
  left: 94.2%;
  height: 35px;
  width: 35px;
}
.right_pulley img {
  width: 100%;
}<div class="left_pulley">
  <img src="gear2.png" />
</div>
<div class="right_pulley">
  <img src="gear2.png" />
</div>[
picture of gears i want to rotate.
]1
 
     
     
     
    