我有一个带有javascript函数的三角形可以移动该图像。
问题是该元素具有方形形状,因此点击和悬停状态会在三角形之外触发(参见下图中的红色部分):
如何防止悬停并在三角形外部点击并仅在三角形内部允许点击/悬停状态?
答案 0 :(得分:14)
要阻止悬停并在CSS三角形外部点击,您可以使用变换来制作三角形。
此处描述了此技术:CSS Triangles with transform rotate
重点是使用具有隐藏溢出的包装器并旋转可点击/可倾斜元素,使其实际上具有三角形形状并防止点击事件或悬停状态在三角形外部。
演示:Click and hover on a CSS triangle
.tr {
width: 40%;
padding-bottom: 28.2842712474619%; /* = width / sqrt(2) */
position: relative;
overflow: hidden;
}
.tr a {
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
background-color: rgba(0, 122, 199, 0.7);
transform-origin: 0 100%;
transform: rotate(45deg);
transition: background-color .3s;
}
/** hover effect **/
.tr a:hover {
background: rgba(255, 165, 0, 0.7);
}

<div class="tr"><a href="#"></a></div>
&#13;
另一种方法是使用带有可点击三角形的 SVG :
#tr{
fill:transparent;
transition:fill .3s;
}
#tr:hover{
fill: orange;
}
/** for the demo **/
html,body{height:100%;margin:0; padding:0;}
body{background:url('https://farm8.staticflickr.com/7435/13629508935_62a5ddf8ec_c.jpg') center no-repeat;background-size:contain;}
svg{display:block;width:30%;margin:0 auto;}
&#13;
<svg viewbox="-2 -2 104 64">
<a xlink:href="#">
<polygon id="tr" points="50 0 100 60 0 60" fill="transparent" stroke="darkorange" stroke-width="2"/>
</a>
</svg>
&#13;
答案 1 :(得分:4)
您应该只能使用图像映射。只需创建一个覆盖三角形的多边形,方法是将坐标设置为(w/2, 0), (w, h), (0, h)
,其中w
和h
是宽度和高度。 (假设你的例子中有一个等边三角形。否则只需用图像编辑器找到这些点。)
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Green_equilateral_triangle_point_up.svg/600px-Green_equilateral_triangle_point_up.svg.png"
width="60" height="52"
usemap="#imgmap" />
<map name="imgmap">
<area href="javascript:alert('Triggered')"
shape="poly"
coords="30,0,60,52,0,52"
style="outline:none;"
target="_self" />
</map>
答案 2 :(得分:3)
这应该有效:(基于Brian Nickel's answer到另一个问题)
$('#triangle').mousedown(function(e) {
e.preventDefault();
//create matching canvas representation for the image
if(!this.canvas) {
this.canvas = $('<canvas/>')[0];
this.canvas.width = this.width;
this.canvas.height = this.height;
this.canvas.getContext('2d').drawImage(this, 0, 0, this.width, this.height);
}
var pixelData = this.canvas.getContext('2d').getImageData(e.offsetX, e.offsetY, 1, 1).data;
//check that the pixel is not transparent
if (pixelData[3] > 0) {
//your code
}
});
工作示例: http://jsfiddle.net/FCf9d/
此解决方案假设三角形内没有透明像素
此示例使用jsfiddle徽标而不是三角形,因为您无法使用远程图像。 jsfiddle-logo有效,因为它位于jsFiddle-domain上,但任何其他随机图像都不起作用。
但是,一旦您在自己的网站上实现代码,这应该不是问题。
我冒昧地将移动功能添加到小提琴中,这样你就可以看到一切都在行动中。如果您喜欢我的剧本,并希望为移动区域添加边界,请查看我的另一个小提琴,其中包含以下内容: http://jsfiddle.net/SN8Ys/
答案 3 :(得分:2)
取自CSS-tricks。这是一个简洁的解决方案,但我不确定点击部分。也许你可以用它掩盖你拥有的东西。
<强> HTML:强>
<div class="arrow-up"></div>
<div class="arrow-down"></div>
<div class="arrow-left"></div>
<div class="arrow-right"></div>
<强> CSS:强>
.arrow-up {
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid black;
}
.arrow-down {
width: 0;
height: 0;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-top: 20px solid #f00;
}
.arrow-right {
width: 0;
height: 0;
border-top: 60px solid transparent;
border-bottom: 60px solid transparent;
border-left: 60px solid green;
}
.arrow-left {
width: 0;
height: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-right:10px solid blue;
}