SM - Стильные решения для вашего сайта

Прелоадер с эффектом домино: стильный и динамичный CSS-анимационный индикатор

Эффект домино: захватывающий прелоадер на CSS

Эффект домино: захватывающий прелоадер на CSS

Прелоадер с эффектом домино — это стильный и динамичный способ удержать внимание пользователей во время загрузки контента.

Анимация цепного падения плиток домино выполнена исключительно с использованием CSS, что делает её лёгкой для интеграции и оптимальной для любых веб-проектов.

Этот эффект не только привлекает внимание, но и добавляет вашему сайту нотку интерактивности и профессионализма.

Простая настройка позволяет адаптировать прелоадер под любой стиль или цветовую палитру вашего дизайна. 

See the Pen Domino preloader by Anton Rikhnovets (@rikhnovets) on CodePen.

        
HTML

<div class="artboard">
  <div class="domino">
    <div></div>
    <div></div>
    <div></div>
    <div></div>
  </div>
</div>

        
CSS
* {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
 
h1, h2, h3, h4, h5, h6, a, p, span {
  padding-bottom: 0.714em !important;
  padding-top: 0.714em !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
}
 
footer {
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  position: fixed;
  width: 100%;
  background: #E9E0D6;
  text-align: center;
}
footer .content {
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  height: 80px;
}
footer .content .bottom {
  padding: 0;
  margin: 0;
  top: 10%;
}
footer .content .bottom .beat {
  color: red;
  -webkit-animation: beat 0.3s infinite alternate;
          animation: beat 0.3s infinite alternate;
}
footer .content .top {
  font-size: 25px;
}
footer .content .top .fa-twitter:hover {
  transition: 350ms ease-in-out;
  color: #55acee;
  transform: scale(1.4);
}
footer .content .top .fa-youtube:hover {
  transition: 350ms ease-in-out;
  color: #cd201f;
  transform: scale(1.4);
}
footer .content .top .fa-instagram:hover {
  transition: 350ms ease-in-out;
  color: #e4405f;
  transform: scale(1.4);
}
footer .content .top .fa-codepen:hover {
  transition: 350ms ease-in-out;
  color: #FFDD40;
  transform: scale(1.4);
}
footer .content .top a {
  padding: 10px;
}
footer .content .top i {
  transition: 500ms ease-in-out;
}
 
body {
  background: #E9E0D6;
  font-family: "Raleway", sans-serif;
  text-align: center;
}
 
.noselect {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
 
.artboard {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  position: absolute;
}
 
.domino > div {
  border-radius: 8px;
  display: inline-flex;
  transform: rotate(45deg);
  width: 50px;
  height: 50px;
  -webkit-animation: domino-effect 2.4s infinite ease-in-out;
          animation: domino-effect 2.4s infinite ease-in-out;
}
.domino > div:nth-child(1) {
  background: #354558;
}
.domino > div:nth-child(1):after {
  background: #354558;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.domino > div:nth-child(2) {
  background: #625059;
}
.domino > div:nth-child(2):after {
  background: #625059;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.domino > div:nth-child(3) {
  background: #905b5c;
}
.domino > div:nth-child(3):after {
  background: #905b5c;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.domino > div:nth-child(4) {
  background: #bd665e;
}
.domino > div:nth-child(4):after {
  background: #bd665e;
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
.domino > div:nth-child(5) {
  background: #eb7260;
}
.domino > div:nth-child(5):after {
  background: #eb7260;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.domino > div:nth-child(1) {
  margin: 23px;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.domino > div:nth-child(2) {
  margin: 23px;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.domino > div:nth-child(3) {
  margin: 23px;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.domino > div:nth-child(4) {
  margin: 23px;
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
.domino > div:nth-child(5) {
  margin: 23px;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.domino > div:after {
  content: "";
  position: relative;
  top: 0px;
  left: -70px;
  opacity: 0;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  -webkit-animation: illusion 2.4s infinite ease-in-out;
          animation: illusion 2.4s infinite ease-in-out;
}
 
@-webkit-keyframes beat {
  to {
    transform: scale(1.4);
  }
}
 
@keyframes beat {
  to {
    transform: scale(1.4);
  }
}
@-webkit-keyframes spin {
  to {
    transform: rotate(140deg);
  }
}
@keyframes spin {
  to {
    transform: rotate(140deg);
  }
}
@-webkit-keyframes domino-effect {
  20%, 100% {
    transform: rotate(135deg);
  }
}
@keyframes domino-effect {
  20%, 100% {
    transform: rotate(135deg);
  }
}
@-webkit-keyframes illusion {
  0%, 25% {
    opacity: 1;
  }
  26.10%, 33.33%, 100% {
    opacity: 0;
  }
}
@keyframes illusion {
  0%, 25% {
    opacity: 1;
  }
  26.10%, 33.33%, 100% {
    opacity: 0;
  }
}
domino-preloader.zip
4 12.45 Kb
Нашли ошибку? Сообщите нам, мы исправим!
0 лайков 6 просмотров
Комментариев нет
Чтобы оставить комментарий, необходимо на сайте.
Копирование запрещено!

Сайт SATAMAX.RU