HTML:Рецепты/Пульсирующий круг: различия между версиями
Материал из Онлайн справочника
Перейти к навигацииПерейти к поиску
Myagkij (обсуждение | вклад) Нет описания правки |
Myagkij (обсуждение | вклад) Нет описания правки |
||
Строка 10: | Строка 10: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
<html> | |||
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"> | <svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"> | ||
<circle id="c" r="10" cx="200" cy="200" fill="red"/> | <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"/> | <animate xlink:href="#c" attributeName="r" from="10" to="200" dur="5s" repeatCount="indefinite"/> | ||
</svg> | </svg> | ||
</html> | |||
=См.также= | =См.также= |
Версия от 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>
См.также
Внешние ссылки