您的方法的问题是,您只有一个highlight
元素。
因此,就像您遇到问题的场景一样,您无法在该区域内mouseout
触发事件。
我建议的方法是首先实际扫描所有可见元素。
<div>
对于每个可见元素,制作一个具有完全相同top, left,
outerWidth
,的虚拟对象。outerHeight
, offset and z-index
换句话说,对整个结构进行非常浅的复制,与深度克隆相反。
另外,如果您认为我的建议适合作为答案,我还有一个小建议。搜索 smartresize 插件,并在调整具有百分比/灵活宽度的 iframe 的大小时,重新计算 div 尺寸和位置。我会把它留给你。
演示:http: //jsfiddle.net/terryyounghk/Mh6Hf/
var $viewFrame = $('div.viewport-container iframe.output-frame').contents(),
$visibles = $viewFrame.find('*:not(html body)').filter(':visible'),
$viewContainer = $('div.viewport-container'),
$overlayElements = $visibles.map(function (i, el) {
var $el = $(el),
$overlayEl = $('<div>');
$overlayEl.addClass('overlay') // this is our identifier
// we need { width:.., height:.., left:.., top:.., z-index:...}
.css($.extend({
position: 'absolute',
width: $el.outerWidth(),
height: $el.outerHeight(),
'z-index': $el.css('z-index')
}, $el.offset()));
$el.data('overlay', $overlayEl); // now the actual object has reference to the overlay
$overlayEl.data('element', $el); // vice versa, now the overlay has reference to the actual object
// you can do more stuff here...
return $overlayEl.get();
});
$overlayElements.appendTo($viewContainer)
.hover(
function () { $(this).addClass('highlight'); },
function () { $(this).removeClass('highlight'); }
);
我在 CSS 中做了一处改动
...
/*div.element-highlight removed*/ div.highlight {
/*display: hidden;*/ /* <---- removed */
position: absolute;
background-color: yellow;
opacity: 0.5;
cursor: default;
pointer-events: auto;
}
对 HTML 进行了一项更改(删除了内部 DIV)
<div class=element-highlight></div>