Guest User

Untitled

a guest
May 23rd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. $("#toggleTheme").toggle(
  2. function () {
  3. $("#changeThemeWrap").animate({
  4. marginTop: "0px"
  5. }, 1200 );
  6. //$(this).css("background-position", "bottom left");
  7. },
  8. function () {
  9. $("#changeThemeWrap").animate({
  10. marginTop: "-122px"
  11. }, 1200 );
  12. //$(this).css("background-position", "top left");
  13. }
  14. );
Add Comment
Please, Sign In to add comment