Advertisement
Guest User

Untitled

a guest
Jan 25th, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. function createImage(url) {
  2. var id = loopObject.chatLine.id;
  3. $(id + ' .message a').html('<img style="width: 250px; margin-left: 25px; box-shadow: 0px 2px 5px #111111; transition: transform 0.5s;" src="'+url+'">');
  4. $(id + ' .message a img').hover(function(){
  5. $(id + ' .message a img').css('transform', 'scale(1.1)');
  6. }, function(){
  7. $(id + ' .message a img').css('transform', 'scale(1)');
  8. });
  9. }
  10.  
  11. if (src.toUpperCase().match(/\.(JPEG|JPG|GIF|PNG|SVG)$/)) { //test if direct image link
  12. imgSrc = src;
  13. createImage(imgSrc);
  14. }
  15. else if (src.substring(0, 17) == 'http://imgur.com/' ) { //else check if imgur non-direct link
  16. imgSrc = 'http://i.imgur.com/' + src.substring(17, 500) + '.jpg';
  17. createImage(imgSrc);
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement