Safari嵌入式SVG doctype

时间:2011-06-16 13:31:44

标签: php safari svg doctype clipping

我创建了一个使用raphaeljs库绘制各种SVG元素的页面,但我在Safari中遇到了一些问题。

我正在绘制图像并使用剪切路径来遮盖某些区域。然后,用户可以将这些图像“点击”到后面放置的其他图像。

这在firefox和chrome,甚至是IE中都可以正常工作。但在Safari中,我无法点击图片。剪切路径似乎在Safari中不起作用。

我通过this question发现,使用Safari的内容类型必须设置为“application / xhtml + xml”,因为它不使用html5解析器。

我已经尝试过将此放在页面顶部的建议......

<?php
header('Content-type: application/xhtml+xml');
?>

...但浏览器只输出html文件。

我只是想知道我需要什么样的doctype来使safari draw正确嵌入SVG,比如chrome和firefox?

这就是我绘制SVG图像的方法,它在chrome和firefox中运行良好

function myDraw(path, url, x, y, w, h, id){

    //create clipPath Element
  var clippath = document.createElementNS("http://www.w3.org/2000/svg","clipPath");  
  clippath.setAttribute("id", id);
  svgcanv.appendChild(clippath);

  //draw the path
  var cp=paper.path(path).translate(x, y).attr({stroke: 0});
  $(cp.node).appendTo('#'+id+'');

    //assoc clipPath with image
  var img = paper.image(url,x,y,w,h);//.attr({fill:"#111",opacity:0.7});    
    img.node.setAttribute("clip-path","url(#"+id+")");
    img.node.setAttribute("class",id);
} 

3 个答案:

答案 0 :(得分:4)

您说希望Safari正确嵌入SVG。如果你的意思是内联SVG,那么知道Safari(从v 5.0.5开始)不能这样做。例如,这不受支持:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
    </head>
    <body>
        <svg id="svgelem" height="200" xmlns="http://www.w3.org/2000/svg">
            <circle id="redcircle" cx="50" cy="50" r="50" fill="red" />
        </svg>
    </body>
</html>

但如果你的意思是使用HTML元素嵌入SVG,那么Safari可以做到这一点。获取SVG代码,将其放在名为“circle.svg”的文件中,然后使用以下三个元素中的任何一个嵌入它:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
    </head>
    <body>
        <embed src="circle.svg" type="image/svg+xml"></embed>
        <object data="circle.svg" type="image/svg+xml"></object>
        <iframe src="circle.svg"></iframe>
    </body>
</html>

答案 1 :(得分:-1)

以下适用于Safari 5.0.5,MacOSX 10.5和iPad上的移动Safari。我正在使用JQuery来解析字符串和raphaelJS中的SVG XML来完成SVG方面的繁重任务。 点击可以使用jQuery中的click()函数或RaphaelJS中的鼠标事件处理来处理。

// svg is a string that contains an SVG path for clipping
SVG_NS = "http://www.w3.org/2000/svg";
pth = $.parseXML(svg)           
doc = $(pth)
// Find the actual element, this may not be the most efficient method
pthelm = null;
doc.children().each(function() {pthelm = this;});
// Duplicate into the document's DOM for webkit
npth = document.createElementNS(SVG_NS, pthelm.nodeName)
for (a in pthelm.attributes) {
    attr = pthelm.attributes[a];
    npth.setAttribute(attr.nodeName, attr.nodeValue);
}
pthelm = npth;                      

cpe = document.createElementNS(SVG_NS, 'clipPath')      
cpe.setAttribute('id', 'svgclippath');
cpe.appendChild(pthelm);
paper.canvas.appendChild(cpe);
img = "http://example.org/path/to/your/image.jpg";
iw = 100; // Image Width
ih = 200; // Image Height
x = svgcanvas.image(img, 0, 0, iw, ih)
x.node.setAttribute('preserveAspectRatio', 'none')
x.node.setAttribute('clip-path', 'url(#svgclippath)')

答案 2 :(得分:-1)

在我的情况下,我将.svg嵌入到HTML代码中。将type="image/svg+xml"属性放入<embed>标记就足以在safari(移动版)上看到图像。我没有在笔记本电脑上测试。