💻 آخرین فرصت یادگیری برنامه‌نویسی با آفر ویژه قبل از افزایش قیمت در ۵ آذر ماه (🎁 به همراه یک هدیه ارزشمند )
۰ ثانیه
۰ دقیقه
۰ ساعت
۱ فاطمه کریمیان
چگونگی اعمال transition صحیح در کلاس wrapper
جامعه Html & CSS ایجاد شده در ۱۱ فروردین ۱۴۰۳
<!DOCTYPE html>
<html dir="rtl" lang="fa">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>پروژه02</title>
    <link
      rel="stylesheet"
      href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0"
    />
    <link rel="stylesheet" href="/assets/css/style.css" />
  </head>
  <style>
    body {
      background-color: rgb(246, 152, 152);
    }
    body,
    html,
    .page {
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0;
      transition: all 0.5s ease;
      overflow: hidden;
    }
    #p1 {
      left: 0;
    }
    #p2,
    #p3 {
      left: 200%;
    }
    ul#menu {
      position: absolute;
      top: 0;
      left: 10px;
      bottom: 0;
      height: 150px;
      width: 40px;
      margin: auto;
      z-index: 1;
    }
    ul#menu a li {
      margin-bottom: 15px;
      font-size: 30px;
      color: #fff;
    }
    #t2:target #p2,
    #t3:target #p3 {
      left: 0;
      transform: translateX(90px);
    }
    #t2:target #p2 .wrapper,
    #t3:target #p3 .wrapper {
      transition-delay: 1s;
      transform: translateX(-100px);
    }
    .page {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
    }
    #p1 {
      background-color: rgb(137, 50, 219);
    }
    #p2 {
      background-color: rgb(13, 13, 161);
    }
    #p3 {
      background-color: gold;
    }
    .page section {
      color: #fff;
      display: block;
      top: 2;
    }
    .wrapper {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%);
      bottom: 0;
      width: 500px;
      height: 400px;
      margin: auto;
      text-align: center;
      transition: all 0.3s ease-in-out;
    }
    .wrapper section {
      margin-bottom: 60px;
      font-size: 120px;
      color: #fff;
    }
    .wrapper span {
      margin-bottom: 30px;
      display: block;
      font-size: 30px;
      color: #fff;
    }
    .wrapper p {
      margin-bottom: 100px;
      font-size: 18px;
      color: #fff;
      line-height: 2;
    }
    #t2:target #p1,
    #t3:target #p1 {
      background-color: #000;
    }
    #t2:target #p1 .wrapper,
    #t3:target #p1 .wrapper {
      filter: blur(3px);
    }
    ul .material-symbols-outlined:hover {
      opacity: 0.5;
    }
    ul .material-symbols-outlined {
      transition: all 0.3s ease;
    }
    ul .material-symbols-outlined:active {
      transform: scale(0.8);
    }
  </style>
  <body>
    <div id="t1">
      <div id="t2">
        <div id="t3">
          <ul id="menu">
            <a href="#t1"
              ><li class="material-symbols-outlined">add_circle</li></a
            >
            <a href="#t2"
              ><li class="material-symbols-outlined">rocket_launch</li></a
            >
            <a href="#t3"><li class="material-symbols-outlined">globe</li></a>
          </ul>
          <div class="page" id="p1">
            <div class="wrapper">
              <section class="material-symbols-outlined">add_circle</section>
              <span class="hint">ورود به دنیای برنامه نویسی</span>
              <p>
                لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ، و با
                استفاده از طراحان گرافیک است، چاپگرها و متون بلکه روزنامه و مجله
                در ستون و سطرآنچنان که لازم است
              </p>
            </div>
          </div>
          <div class="page" id="p2">
            <div class="wrapper">
              <section class="material-symbols-outlined">rocket_launch</section>
              <span class="hint">سرعت یادگیری بالا</span>
              <p>
                لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ، و با
                استفاده از طراحان گرافیک است، چاپگرها و متون بلکه روزنامه و مجله
                در ستون و سطرآنچنان که لازم است
              </p>
            </div>
          </div>
          <div class="page" id="p3">
            <div class="wrapper">
              <section class="material-symbols-outlined">globe</section>
              <span class="hint">ورود به بازارکار بین المللی</span>
              <p>
                لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ، و با
                استفاده از طراحان گرافیک است، چاپگرها و متون بلکه روزنامه و مجله
                در ستون و سطرآنچنان که لازم است
              </p>
            </div>
          </div>
        </div>
      </div>
    </div>
  </body>
</html>

نمونه خوبی است.

ایرادی ندیدم آیا مشکلی دارد یا نمونه پروژه است؟

محسن موحد ۱۱ فروردین ۱۴۰۳، ۰۸:۵۱