в анимации не отрабатывает fill-opacity.
svg {
border: 3px solid #eee;
display: block;
margin: 1em auto;
background-color: #7fc4fc;
}
@keyframes trap_stroke {
0% {
fill-opacity: 0.62;
}
100% {
fill-opacity: 0.22;
}
}
.circle {
animation: trap_stroke 3s;
animation-iteration-count: infinite;
}
<svg width="100" height="100">
<symbol id="point">
<circle id="orange-circle" r="9" cx="50" cy="50" fill="url(#linear-gradient)"/>
<linearGradient id="linear-gradient">
<stop offset="0%" stop-color="#D3000E"/>
<stop offset="100%" stop-color="#D3CF00"/>
</linearGradient>
<animate
xlink:href="#orange-circle"
attributeName="r"
from="9"
to="16"
dur="3s"
begin="1s"
repeatCount="indefinite"
fill="freeze" />
</symbol>
</svg>
<svg viewBox="0 0 100 100" width="100" height="100">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#point"</use>
</svg>
Обе анимации можно оставить в svg
svg {
border: 3px solid #eee;
display: block;
margin: 1em auto;
background-color: #7fc4fc;
}
<svg width="100" height="100">
<symbol id="point">
<circle id="orange-circle" r="9" cx="50" cy="50" fill="url(#linear-gradient)"/>
<linearGradient id="linear-gradient">
<stop offset="0%" stop-color="#D3000E"/>
<stop offset="100%" stop-color="#D3CF00"/>
</linearGradient>
<animate
xlink:href="#orange-circle"
attributeName="fill-opacity"
from="0.62"
to="0.22"
dur="3s"
begin="1s"
repeatCount="indefinite"
fill="freeze" />
<animate
xlink:href="#orange-circle"
attributeName="r"
from="9"
to="16"
dur="3s"
begin="1s"
repeatCount="indefinite"
fill="freeze" />
</symbol>
</svg>
<svg viewBox="0 0 100 100" width="100" height="100">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#point"</use>
</svg>
Виртуальный выделенный сервер (VDS) становится отличным выбором
Имеется видео на компьютере нужно добавить постер выше плеера, так же отдельно есть чёрный экран и кнопкаПри нажатии на оранжевую кнопку...
Совсем замучился с математикой, уже начинаю просто гадать( Нужно сделать галерею, типа masonry или justifeid, только без js, и горизонтальную
Не могу понять в чем проблема, подскажите пожалуйста