内联SVG元素转换悬停区域

时间:2014-08-01 17:31:17

标签: html css svg inline-code

我一直在教自己HTML& CSS,最近进入SVG,因为我正在寻找跨浏览器的文本渐变。我设计了一个小按钮,其中div重叠以创建阴影透明效果,SVG文本特定div可以避免一些不透明度问题,然后SVG文本位于按钮中间。

我还设计了一个悬停区域,将背景图像恢复到可见度。

所以这就是问题所在:

在Firefox和Opera中,元素将:悬停区域向下和向右延伸约50个像素。

但是,在Chrome和Safari中,它很好。

我已经尝试过使用边距和填充,但我想知道它是否只是一个SVG兼容性问题?

此外,附带的代码纯粹是出于实验目的,不适用于客户或工作或其他任何目的。

这是HTML:

<!DOCTYPE html>
<html>
<head>
    <title>Testing out some designs</title>
    <link rel="stylesheet" tyle="text/css" href="stylesheet.css"/>
</head>

<body>
    <div class="artBox">
        <div class="artBoxButton">
            <div class="buttonSVG">
                <svg>
                    <defs>
                        <linearGradient id="txtgrad" x1="0%" y1="0%" x2="0%" y2="100%">
                            <stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:1"/>
                            <stop offset="100%" style="stop-color:rgb(0,0,0);stop-opacity:1"/>
                        </linearGradient>
                    </defs>
                    <text 
                        fill="url(#txtgrad)" 
                        style="font-family:'Helvetica Neue','Helvetica','Verdana','Arial',sans-serif;
                        font-size:30px;
                        font-weight:200" 
                        x="15" 
                        y="35">Read More</text>
                </svg>
            </div>
        </div>
    </div>

</body>
</html>

这是CSS:

* {
    margin: 0px;
    padding: 0px;
}
.artBox {
    width: 260px; 
    height: 89px;
    border-radius: 10px;
    position: relative;
    top: 10em;
    left: 10em;
    background-image: url('http://i.imgur.com/ki4OY5X.png');
    background-repeat: no-repeat;
}
.artBoxButton {
    text-align: center;
    width: 260px;
    height: 89px;
    background-color: #e6e6e6;
    opacity: 0.9;
    border-radius: 10px;
    box-shadow: 0px 1px 1px 1px #b2b2b2;
    margin: 0px;
}
.artBoxButton:hover {
    opacity: 0.5;
    cursor: pointer;
}
.buttonSVG {
    width: 160px;
    height: 50px;
    position: relative;
    left: 50px; 
    top: 19.5px;
    opacity: 1.0;
}

同样,我只是在写HTML&amp; CSS大约两周,请温柔..

1 个答案:

答案 0 :(得分:0)

您没有为<svg>元素指定高度或宽度。我想象每个都是100%,或者160px的高度和50px的宽度是你想要的。