Jump to content
  • 0

Не появляется картинка при наведении курсора на ссылку размещённую на окуржности созданной в svg


Иван98
 Share

Question

Доброго времени суток, люди добрые!!!
Помогите пожалуйста.
При наведении курсора на ссылку размещённую на окружности, нарисованной с помощью svg, должна по-идее появляться картинка, но она упортно этого делать не хочет.be.gif Помогите пожалуйста разобраться в причине.
Все сопутствующие файлы во вложении.

На обычной ссылке всё происходит как надо.

<!DOCTYPE html><html> <head>  <meta charset="utf-8">  <title></title>   </head> <body> <style> .okrug span{   position: absolute;    left: 500px;   z-index: 100!important;   visibility: hidden;   } .okrug:hover span{visibility: visible;} </style>  <object data="link.svg" type="image/svg+xml" width="400" height="450" >  </object><!--обычная ссылка--><a class="okrug" href="http://www.ya.ru"  xlink:show="new">ya.ru<span><img src="images/okr1.jpg" style="position: absolute; " /></span></a></body></html>

Вот и ссылочка моя, отказывающаяся работать:

<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN""http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svgxmlns="http://www.w3.org/2000/svg" version="1.1"xmlns:xlink="http://www.w3.org/1999/xlink"width="400" height="400"><title></title><desc></desc><path id="mypath2" d="M50,150 A130, 130 0 1,1 50,150.01"stroke="grey" fill="none"/><a class="okrug" xlink:href="http://www.ya.ru"  xlink:show="new"><text font-size="17" font-family="arial" fill=" #0000FF"><textPath xlink:href="#mypath2" startOffset="35%">ya.ru<span><img src="images/okr1.jpg" style="position: absolute;    top: 348px;   left: 511px;"   /></span></textPath></text></a></svg>

Заранее благодарю за помощь!

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

По-моему, нужно не img, а image использовать, как-то так:

<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="400" height="400">    <title></title>    <desc></desc>    <style>        a image {            visibility: hidden;        }        a:hover image {            visibility: visible;        }    </style>    <path id="mypath2" d="M50,150 A130, 130 0 1,1 50,150.01" stroke="grey" fill="none"/>    <a class="okrug" xlink:href="http://www.ya.ru" xlink:show="new">        <text font-size="17" font-family="arial" fill=" #0000FF">            <textPath xlink:href="#mypath2" startOffset="35%">ya.ru</textPath>        </text>        <image xlink:href="images/okr1.jpg" width="100%" height="100%" x="0" y="0"/>    </a></svg>
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