Показать сообщение отдельно
  #5 (permalink)  
Старый 14.02.2017, 16:49
Аватар для Paguo-86PK
Профессор
Отправить личное сообщение для Paguo-86PK Посмотреть профиль Найти все сообщения от Paguo-86PK
 
Регистрация: 16.09.2009
Сообщений: 253

<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
<style>
    :hover {
        animation-name: anim1a;
    }
</style>
</head>
<body>
    <svg width="300" height="200">
        <defs>
	<path id='base' d='M150 100m0-50a100 50 0 0 0 0 100a100 50 0 0 0 0-100z' fill='none'>
		<animate attributeName='stroke-dasharray' from='485 10' to='10 485' begin='dblclick + anim2.end' dur='2s' fill='freeze' restart='whenNotActive' id='anim1' />
		<animate attributeName='stroke-dasharray' from='10 485' to='485 10' begin='0s; (dblclick + anim1.end)' dur='2s' fill='freeze' restart='whenNotActive' id='anim2' />
		<animate attributeName='stroke-dashoffset' from='242.5' to='0' begin='anim1.begin' dur='2s' fill='freeze' />
		<animate attributeName='stroke-dashoffset' from='0' to='242.5' begin='anim2.begin' dur='2s' fill='freeze' />
	</path>
        </defs>
        <use xlink:href="#base" stroke="orange" stroke-width="14"/>
        <use xlink:href="#base" stroke="yellow" stroke-width="10"/>
    </svg>
</body>
</html>

Последний раз редактировалось Paguo-86PK, 15.02.2017 в 18:48.
Ответить с цитированием