I am newbie with html css and here is my problem.
I want to hide a block, then when I use an animation, it will show this block.
I refer a website and it tell me that I should use a CSS Pseudo Classes.
I tried it and at my 1st animation, I successfully to display the image.
Here is the code of the 1st animation
html code :
<div class="header__qr">
      <img src="./assets/img/QRcode.png" alt="QR code" class="header__qr-img">
      <div class="header__qr-apps">
      <a href="" class="header__qr-link">
      <img src="./assets/img/Googleplay.png" alt="Google play" class="header__qr-download-img">
      </a>
      <a href="" class="header__qr-link">
      <img src="./assets/img/apple store.png" alt="App store" class="header__qr-download-img">
      </a>
      </div>
      </div>
css code :
.header__qr {
    width: 190px;
    position: absolute;
    left: 0;
    top: 110%;
    padding: 8px;
    display: none;
    animation: fadeIn ease-in 1s;
}
.header__qr::before {
    position: absolute;
    left: 0;
    top: -16px;
    width: 100%;
    height: 20px;
    content: "";
    display: block;
}
and here is my 2nd animation code
<div class="header__notify">
<div class="header__img">
<img src="./assets/img/xemthongbao.png" alt="xemthongbao" class="header__notify-img">
</div>
<div class="header__notify-info">
<span class="header__notify-name">Đăng nhập để xem Thông báo</span>
</div>
<div class="register-info">
<div class="child register-register">Đăng ký</div>
<div class="child register-login">Đăng nhập</div>
</div>
</div>
css code is here
.header__notify {
    background-color: white;
    width: 400px;
    position: absolute;
    left: 0;
    top: 110%;
    padding: 20px;
    display: none;
    animation: fadeIn ease-in 1s;
}
.header__notify::before {
    position: absolute;
    left: 0;
    top: -16px;
    width: 100%;
    height: 20px;
    content: "";
    display: block;
}
As you can see, the second code is very same as the first code, and when I delete the display:none, it display the image ? So I think that the CSS Pseudo Classes must be actived ? But it does not active as I wish.
Here is all of my code
https://github.com/anhquanjp/bai110headernotification
Could you please give me some ideas for this problem ? Thank you very much for your time.
 
    