Jump to content
  • 0

CSS + SVG animation


VitaliyAT
 Share

Question

1) Как реализовать, чтобы при наведении мышки начиналась анимация svg, без дубиката картинки (когда одна половина статическая, а другая движется, а css только сдвигает картинку). Хотелось бы напрямую.

2) Как реализовать, чтоб анимация была подвязана к положению курсора мыши (слева подвожу - одна анимация, справа подвожу - другая анимация)

На сколько я понял в svg есть привязка анимации к css - не разобрался пока. Прошу помощи у тех кто разобрался.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

<?xml version="1.0" standalone="no"?>
<svg width="12cm" height="4cm" viewBox="0 0 1200 400" xmlns="http://www.w3.org/2000/svg" version="1.1">
<style>
:hover {
animation-name: anim1;
}
</style>

<rect x="400" y="100" width="200" height="200" fill="red">
<animate id="anim1" attributeName="opacity" attributeType="CSS" from="0" to="1" dur="1s" begin="mouseover; anim2.end" />
<animate id="anim2" attributeName="opacity" attributeType="CSS" from="1" to="0" dur="1s" begin="anim1.end" end="mouseout"/>
</rect>
<rect x="400" y="300" width="200" height="200" fill="green">
<animate id="anim3" attributeName="opacity" attributeType="CSS" values="0;1;0" dur="1.5s" begin="mouseover" end="mouseout" fill="freeze" repeatCount="indefinite"/>
</rect>

</svg>

вот сам понял как. Красный квадрат мигает постоянно после наведения, зелёный только когда мышка над ним. Если убрать freez, то будет возвращаться в исходную.

Ссылки по теме: 1, 2 (тут какраз показывается как это делается через стили css) и 3

Edited by VitaliyAT
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy