ברכת שנה טובה מדליקה – לשילוב באתר שלך

לכל לקוחותי היקרים!
שנה טובה ומתוקה

שנת בריאות! שמחה! ושגשוג!

שנת בשורות טובות

וישועה 🙂

נכון מדליק?

אינטראקטיבי לגמרי.

.

צרי פופאפ.

הוסיפי בו אלמנט מסוג HTML

כתבי בתוכן האלמנט את הקוד הבא:

				
					<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
 <div class="envelop scissors" >
 <div class="envelop__front-paper"></div>
    <div class="envelop__back-paper"></div>
    <div class="envelop__up-paper js-up-paper"></div>
    <div class="envelop__sticker js-sticker"></div>
    <div class="envelop__false-sticker"></div>
    <div class="envelop__content js-envelop-content">
      <div class="love-notes">
        <div class="note js-note">
          <div class="note__text">
            <p>
             לכל לקוחותי היקרים!<br/>שנה טובה ומתוקה
            </p>
          </div>
        </div>
        <div class="note js-note">
          <div class="note__text">
            <p>שנת בריאות! שמחה! ושגשוג!</p>
          </div>
        </div>
        <div class="note js-note">
          <div class="note__text">
            <p>שנת בשורות טובות</p>
            <p>וישועה :)</p>
          </div>
        </div>
      </div>
    </div>
  </div>

<script src='https://cdnjs.cloudflare.com/ajax/libs/gsap/3.6.0/gsap.min.js'></script>
<script>
let mobile_media_query = window.matchMedia("(max-width: 400px)");
let tablet_media_query = window.matchMedia(
  "(min-width: 400px) and (max-width: 600px)"
);
const notes = document.querySelectorAll(".js-note");
function recize_notes() {
  for (let i = 0; i < notes.length; i++) {
    if (notes[i].classList.contains("active")) {
      notes[i].classList.remove("active");
      gsap.set(notes[i], {
        height: "30%",
        clearProps: "all"
      });
    }
  }
}
function notes_ready() {
  gsap.to(".js-envelop-content", {
    height: "110%",
    duration: 0.5
  });

  for (let i = 0; i < notes.length; i++) {
    notes[i].addEventListener("click", function () {
      if (mobile_media_query.matches) {
        if (this.classList.contains("active")) {
          this.classList.remove("active");
          gsap.set(this, {
            height: "30%",
            clearProps: "all"
          });
        } else {
          for (let i = 0; i < notes.length; i++) {
            if (notes[i].classList.contains("active")) {
              notes[i].classList.remove("active");
              gsap.set(notes[i], {
                height: "30%",
                clearProps: "all"
              });
            }
          }
          this.classList.add("active");
          gsap.set(this, {
            height: 125 + 40 * i + "%"
          });
        }
      } else if (tablet_media_query.matches) {
        if (this.classList.contains("active")) {
          this.classList.remove("active");
          gsap.set(this, {
            height: "30%",
            clearProps: "all"
          });
        } else {
          for (let i = 0; i < notes.length; i++) {
            if (notes[i].classList.contains("active")) {
              notes[i].classList.remove("active");
              gsap.set(notes[i], {
                height: "30%",
                clearProps: "all"
              });
            }
          }
          this.classList.add("active");
          gsap.set(this, {
            height: 80 + 21 * i + "%"
          });
        }
      } else {
        if (this.classList.contains("active")) {
          this.classList.remove("active");
          gsap.set(this, {
            height: "30%",
            clearProps: "all"
          });
        } else {
          for (let i = 0; i < notes.length; i++) {
            if (notes[i].classList.contains("active")) {
              notes[i].classList.remove("active");
              gsap.set(notes[i], {
                height: "30%",
                clearProps: "all"
              });
            }
          }
          this.classList.add("active");
          gsap.set(this, {
            height: 70 + 20 * i + "%"
          });
        }
      }
    });
  }
}

//-> Function that set up the up paper of the envelope.
function set_up_paper() {
  var arr = [0, 0, 100, 0, 50, 61];
  gsap.set(".js-up-paper", {
    bottom: "97%",
    rotation: 180,
    zIndex: 200,
    clipPath:
      "polygon(" +
      arr[0] +
      "%" +
      arr[1] +
      "%," +
      arr[2] +
      "%" +
      arr[3] +
      "%," +
      arr[4] +
      "%" +
      arr[5] +
      "%)",
    onComplete: notes_ready
  });
}
function envelop_transition() {
  gsap.to(".js-up-paper", {
    bottom: "1%",
    duration: 0.25,
    onComplete: set_up_paper
  });
  document
    .querySelector(".js-up-paper")
    .removeEventListener("click", envelop_transition);
  document.querySelector(".js-up-paper").classList.remove("cursor");
}
function sticker() {
  gsap.set(".js-sticker", { width: "20%", left: "-80%" });
  jQuery('.scissors').removeClass("scissors");
  document
    .querySelector(".js-up-paper")
    .addEventListener("click", envelop_transition);
  document.querySelector(".js-up-paper").classList.add("cursor");
}

jQuery(document).on('click',".scissors",sticker);

window.onresize = function (event) {
  recize_notes();
};
  </script>
<style>


.envelop {
  width: 15rem;
  height: 10rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
@media (min-width: 400px) and (max-width: 600px) {
  .envelop {
    width: 20rem;
    height: 15rem;
  }
}
@media (min-width: 600px) {
  .envelop {
    width: 25rem;
    height: 20rem;
  }
}
@media (min-width: 600px) and (min-height: 600px) {
  .envelop {
    bottom: 20%;
  }
}
.envelop__front-paper {
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  border-radius: 0.7rem;
  border: 0.35rem solid #967b5c;
  background-color: #ba9872;
  clip-path: polygon(100% 0%, 50% 70%, 0% 0%, 0% 100%, 100% 100%);
  z-index: 300;
}
.envelop__back-paper {
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  border-radius: 0.7rem;
  background-color: #967b5c;
  clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 90%);
  z-index: 100;
}
.envelop__up-paper {
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  position: relative;
  border-radius: 0.7rem;
  background-color: #967b5c;
  z-index: 400;
  clip-path: polygon(0% 0%, 100% 0%, 50% 81%);
}
.envelop__sticker {
  width: 100%;
  height: 20%;
  position: absolute;
  margin: auto;
  top: 30%;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 400;
  background-image: url("https://appupgo.co.il/wp-content/uploads/2024/09/DALL·E-2024-09-05-11.03.35-A-highly-minimalist-and-smooth-pomegranate-design-with-a-transparent-background-suitable-for-a-small-sticker.-The-pomegranate-should-be-extremely-sim.webp");
  background-color: #f9f9f9;
  border: 0.3rem solid #701321;
  background-size: 2rem;
  background-position: center;
}
@media (max-width: 400px) {
  .envelop__sticker {
    background-size: 1.2rem;
  }
}
@media (min-width: 600px) {
  .envelop__sticker {
    height: 15%;
  }
}
.envelop__false-sticker {
  width: 20%;
  height: 20%;
  position: absolute;
  margin: auto;
  top: 30%;
  left: 80%;
  bottom: 0;
  right: 0;
  z-index: 300;
  background-image: url("https://appupgo.co.il/wp-content/uploads/2024/09/DALL·E-2024-09-05-11.03.35-A-highly-minimalist-and-smooth-pomegranate-design-with-a-transparent-background-suitable-for-a-small-sticker.-The-pomegranate-should-be-extremely-sim.webp");
  background-color: #f9f9f9;
  border: 0.3rem solid #701321;
  background-size: 2rem;
  background-position: center;
}
@media (max-width: 400px) {
  .envelop__false-sticker {
    background-size: 1.2rem;
  }
}
@media (min-width: 600px) {
  .envelop__false-sticker {
    height: 15%;
  }
}
.envelop__content {
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 200;
}

.love-notes {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.note {
  width: 95%;
  height: 30%;
  background-color: #f9f9f9;
  position: absolute;
  overflow: hidden;
  transition: height 0.5s, opacity 0.25s;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}
.note:nth-child(1) {
  bottom: 60%;
}
.note:nth-child(2) {
  bottom: 40%;
}
.note:nth-child(3) {
  bottom: 20%;
}
.note:hover {
  cursor: pointer;
  height: 45%;
}
.note__text {
  padding: 1rem;
}
.note__text p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-align: center;
}
@media (min-width: 300px) and (max-width: 600px) {
  .note__text p {
    font-size: 1.025rem;
  }
}
@media (min-width: 600px) {
  .note__text p {
    font-size: 1.15rem;
  }
}

.scissors {
  cursor: url("https://appupgo.co.il/wp-content/uploads/2024/09/sisors.png"), pointer;
}
.scissors:active {
  cursor: url("https://appupgo.co.il/wp-content/uploads/2024/09/pngwing-com.png"), pointer;
}

.cursor {
  cursor: pointer;
}
</style>
				
			

נרשמת כבר לסדנא

ליצירת אפקט משלך

ביום שני 10:30?

 

אם לא –

זריז תתפסי כאן מקום

כדי שתדעי איך לייצר בעצמך

אפקט טקסט מדליק

תביני מה עומד מאחורי בניית האפקט

ואיך אפשר לשנות אותו

ככה שיתאים בול

לצרכים שלך 😊

 

מחכה לך,

מדייקת חומרים לסדנא

רבקי

כתיבת תגובה

אולי תאהבי גם:

איך ליצור מעבר צבע באלמנטור? (CSS)

איך לייצר אפקט מילוי מעבר צבע בטקסטים של הכותרות? (שווה לעקוב עד הסוף. יש גם הדגמה עם הנפשה “מבריקה”!)

תהא שנת פיתוח דרמטי 😊

הבאתי לך כאן אפקט קליקלות, משדרג כל אתר טרנדי וטיפוגרפי פלאאאם:

לוגו מונפש בטכנולוגיית SVG

SVG, בואי נדבר על זה קצת. הצצה מרתקת לתהליך הנפשת לוגו בעזרת טכנולוגיית SVG.