Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. setInterval(function () {
  2. document.querySelectorAll('div.img-title').forEach(function (title) {
  3. title.parentNode.removeChild(title);
  4. });
  5.  
  6. document.querySelectorAll('img.img').forEach(function (img) {
  7. if (!img.alt) {
  8. return;
  9. }
  10.  
  11. var title = document.createElement('div');
  12.  
  13. title.innerHTML = img.alt;
  14. title.className = 'img-title';
  15. title.style = 'padding: 5px; background: black; color: white; font-weight: bold; opacity: 0.9; position: absolute; top: 0;';
  16.  
  17. img.parentNode.insertBefore(title, img.nextSlibing);
  18. });
  19. }, 2000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement