gpt4 book ai didi

css - 将类 (fancybox) 分配给 SVG 元素

转载 作者:太空宇宙 更新时间:2023-11-03 18:53:11 25 4
gpt4 key购买 nike

我正在尝试将类 (video.js) 分配给 SVG 元素。不知何故类被禁用。我在下面的尝试不起作用。

<a class="video" xlink:href="http://www.youtube.com/v/ZeStnz5c2GI?fs=1&amp;
autoplay=1" title="The Falltape"><circle cx="168" cy="79" r="59" fill="green" />
</a>

当我把它和一些没有 SVG 圆圈的纯文本放在一起时它工作正常

<a class="video" title="The Falltape" href="http://www.youtube.com/v/ZeStnz5c2GI?
fs=1&amp;autoplay=1"><img src="images/1.jpg" alt="" />TEXT</a>

链接到 video.js

Query(document).ready(function() {

$(".video").click(function() {
$.fancybox({
'padding' : 0,
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'title' : this.title,
'width' : 853,
'height' : 480,
'href' : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
'type' : 'swf',
'swf' : {
'wmode' : 'transparent',
'allowfullscreen' : 'true'
}
});

return false;
});
});

有什么建议吗?

最佳答案

不要将class属性放入XLink命名空间,将href属性放入XLink命名空间:

<a class="video" xlink:href="http://www.youtube.com/v/ZeStnz5c2GI?fs=1&amp;
autoplay=1" title="The Falltape"><circle cx="168" cy="79" r="59" fill="green" />
</a>

确保围绕它的 SVG 也是正确的。

关于css - 将类 (fancybox) 分配给 SVG 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14314909/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com