HTML:Рецепты/Пульсирующий круг: различия между версиями

Материал из Онлайн справочника
Перейти к навигацииПерейти к поиску
Нет описания правки
Нет описания правки
Строка 9: Строка 9:
</svg>
</svg>
</syntaxhighlight>
</syntaxhighlight>
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400">
    <circle id="c" r="10" cx="200" cy="200" fill="red"/>
    <animate xlink:href="#c" attributeName="r" from="10" to="200" dur="5s" repeatCount="indefinite"/>
</svg>


=См.также=
=См.также=

Версия от 23:18, 1 ноября 2023

Пульсирующий круг

<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400">
    <circle id="c" r="10" cx="200" cy="200" fill="red"/>
    <animate xlink:href="#c" attributeName="r" from="10" to="200" dur="5s" repeatCount="indefinite"/>
</svg>

<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400">

   <circle id="c" r="10" cx="200" cy="200" fill="red"/>
   <animate xlink:href="#c" attributeName="r" from="10" to="200" dur="5s" repeatCount="indefinite"/>

</svg>

См.также

Внешние ссылки