Advertisement
Guest User

Untitled

a guest
Jan 12th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.30 KB | None | 0 0
  1. jQuery('#plus').click(function() {
  2.     var width = 1170;
  3.     var height = 700;
  4.     jQuery('img').css('width', width*1.1+'px');
  5.     jQuery('img').css('height', height*1.1+'px');
  6. });
  7.  
  8. jQuery('#minus').click(function() {
  9.     jQuery('img').css('width', width/1.1+'px');
  10.     jQuery('img').css('height', height/1.1+'px');
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement