Guest User

Untitled

a guest
Apr 25th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. list = $('mainbody_public').select("img");
  2. for (i=0;i<list.length;i++) {
  3. tmpWidth = list[i].getWidth();
  4. tmpHeight = list[i].getHeight();
  5.  
  6. if (tmpWidth > 450) {
  7. newWidth = 450;
  8. diff = tmpWidth - newWidth;
  9.  
  10. newHeight = tmpHeight - diff;
  11.  
  12. list[i].writeAttribute('width', newWidth);
  13. list[i].writeAttribute('height', newHeight);
  14. }
  15. }
Add Comment
Please, Sign In to add comment