djdj - HTMLify profile

djdj's Profile Picture

djdj

471 Files

103195 Views

Latest files of /djdj/youtube/animated_acc

images/ djdj/youtube/animated_acc/images/
5 Items
  • 1.jpg
  • 2.jpg
  • 3.jpg
  • 4.jpg
  • 5.jpg
  • Animated djdj/youtube/animated_acc/index.html
    122 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Animation</title>
    <link rel="stylesheet" href="style.css">
    <script src="script.js" defer></script>
    script.js djdj/youtube/animated_acc/script.js
    100 Views
    0 Comments
    const cardsContainer = document.querySelector(".container");

    cardsContainer.addEventListener("click", (e) => {
    const target = e.target.closest(".card");

    if (!target) return;

    cardsContainer.querySelectorAll(".card").forEach((card) => {
    style.css djdj/youtube/animated_acc/style.css
    45 Views
    0 Comments
    @import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap");

    *,
    *::before,
    *::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;