Advertisement
lemansky

Untitled

Oct 13th, 2023
842
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.83 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Document</title>
  7. </head>
  8. <body>
  9.     <img src="#" alt="">
  10.     <img src="#" alt="">
  11.     <img src="#" alt="">
  12.     <img src="#" alt="">
  13.     <img src="#" alt="">
  14.     <img src="#" alt="">
  15.     <img src="#" alt="">
  16.     <img src="#" alt="">
  17.     <img src="#" alt="">
  18.     <img src="#" alt="">
  19.     <script>
  20.        let img = document.querySelectorAll('img');
  21.        fetch('https://api.jikan.moe/v4/anime?q=Bleach&sfw')
  22.       .then(response => response.json())
  23.       .then(items => {
  24.            console.log(items);
  25.             items.data.forEach((el, i) => {
  26.                 img[i].src = el.images.jpg.image_url;
  27.             });
  28.            
  29.        })
  30.     </script>
  31. </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement