Guest User

Untitled

a guest
Jan 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <div class="my_img"><img src="/img_01.JPG" alt=""></div>
  2.  
  3. стили :
  4. .my_img img{width: 10%; height: 10%;}
  5.  
  6. <div id="my_i"></div>
  7.  
  8. стили :
  9. #my_i img{width: 100%; height: 100%;}
  10.  
  11. (кратко)
  12.  
  13. 1.
  14. document.getElementById('my_i').innerHTML = document.getElementsByClassName('my_img')[...].innerHTML;
  15.  
  16. 2.
  17. var img2 = document.createElement('img');
  18. img2.src = '/img_02.JPG';
  19. img2.alt = '';
  20. document.getElementById('my_i').removeChild(document.getElementById('my_i').childNodes[0]);
  21. document.getElementById('my_i').appendChild(img2);
Add Comment
Please, Sign In to add comment