Advertisement
Guest User

Untitled

a guest
Jul 28th, 2014
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(".hexagon").click(animate_hexagon)
  2.  
  3.           function animate_hexagon(showInfo) {
  4.             var that = this;
  5.             $("html, body").animate({scrollTop: $("#services").offset().top + 1000}, 1000);
  6.  
  7.             var styles = {
  8.               transform: "translate3d(-70px, 120px, 0) scale(3)"
  9.             };
  10.  
  11.             //$("#main-hexagon").css(styles);
  12.             showInfo(this);
  13.  
  14.           }
  15.  
  16.     function showInfo(that) {
  17.               console.log("Show Info ran");
  18.           }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement