DEV Community

Stanislav Karol
Stanislav Karol

Posted on • Edited on

Пара небольших заметок о transition

  • Для оптимального рендера в значении transition-property вместо all написать свойства, которые будут изменены.
  • Не возможно задать transition для display: block и display: none. Пример:
<button class="button">Нажми меня</button>
Enter fullscreen mode Exit fullscreen mode
.button {
  background-color: tomato;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  padding: 15px;
  transition-duration: 0.2s;
  transition-property: opacity;
  opacity: 0.7;
}

.button:hover {
  opacity: 0;
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

AWS GenAI LIVE image

How is generative AI increasing efficiency?

Join AWS GenAI LIVE! to find out how gen AI is reshaping productivity, streamlining processes, and driving innovation.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay