Translations:SVG-Dashboards/72/en: различия между версиями

Материал из Wiren Board
(Новая страница: «A rule containing two keyframes would look like this: <syntaxhighlight lang="css"> @keyframes <keyframe name> { from: { description of the initial state of the element } to: { description of the final state of the element } } </syntaxhighlight> Here '''from''' and '''to''' keywords denote the start and end points of the animation. Instead, you can use 0% and 100%, as well as add intermediate values.»)
 
(нет различий)

Текущая версия на 12:54, 4 августа 2023

Определение сообщения (SVG-Dashboards)
Правило содержащее два ключевых кадра будет выглядеть так:
<syntaxhighlight lang="css">
@keyframes <имя кейфрейма> {
from: { описание начального состояния элемента }
to: { описание конечного состояния элемента }
}
</syntaxhighlight>
Здесь '''from''' и '''to''' ключевые слова обозначающие начальную и конечную точки анимации. Вместо них можно использовать 0% и 100%, а также добавить промежуточные значения.

A rule containing two keyframes would look like this:

 
@keyframes <keyframe name> {
from: { description of the initial state of the element }
to: { description of the final state of the element }
}

Here from and to keywords denote the start and end points of the animation. Instead, you can use 0% and 100%, as well as add intermediate values.