Google Chrome扩展程序:突出显示鼠标悬停的div

时间:2010-12-14 22:51:51

标签: google-chrome-extension onhover

我是Google Chrome扩展程序的新用户,并尝试编写一个在悬停时突出显示div的扩展程序。如果另一个div内部有div而内部div已悬停,我想仅突出显示内部div

我有一些样本正在运行,但我不知道如何捕捉悬停事件。

3 个答案:

答案 0 :(得分:21)

在HTML中,每个鼠标事件都可以访问底层元素。您可以使用JavaScript轻松完成这项工作,HTML5中有一个很好的功能,名为classList(感谢来自Chromium的Erik),它允许您轻松地从DOM中添加和删除类。

首先,您可以使用Google Chrome Content Scripts来实现这一目标。该算法非常简单,您保留指向上次访问的DOM的指针,并且只需在访问另一个DIV元素时添加/删除类。

manifest.json 中我们将为我们看到的每个页面定义CSS和JS注入。

 ...
  ...
  "content_scripts": [
    {
      "matches": ["http://*/*"],
      "css": ["core.css"],
      "js": ["core.js"],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
  ...
  ...

现在让我们看看我们的 core.js ,我已经提供了一些评论来解释发生了什么:

// Unique ID for the className.
var MOUSE_VISITED_CLASSNAME = 'crx_mouse_visited';

// Previous dom, that we want to track, so we can remove the previous styling.
var prevDOM = null;

// Mouse listener for any move event on the current document.
document.addEventListener('mousemove', function (e) {
  var srcElement = e.srcElement;

  // Lets check if our underlying element is a DIV.
  if (srcElement.nodeName == 'DIV') {

    // For NPE checking, we check safely. We need to remove the class name
    // Since we will be styling the new one after.
    if (prevDOM != null) {
      prevDOM.classList.remove(MOUSE_VISITED_CLASSNAME);
    }

    // Add a visited class name to the element. So we can style it.
    srcElement.classList.add(MOUSE_VISITED_CLASSNAME);

    // The current element is now the previous. So we can remove the class
    // during the next iteration.
    prevDOM = srcElement;
  }
}, false);

现在,让我们看看样式的简单 core.css

.crx_mouse_visited {
  background-color: #bcd5eb !important;
  outline: 1px solid #5166bb !important;
}

多数民众赞成,您会注意到所有div都会处于“悬停”状态,类似于在检查元素时访问浏览器检查器时发生的情况。

答案 1 :(得分:2)

现在是2018年,距提出这个问题已有7.5年了。 然而问题仍然存在,mohamed-mansour提供的答案是最好的。

但是,我希望对其进行一些优化,以对https的支持实现现代化,并为整个Chrome扩展程序提供完整的文档。

mannifest.json

{
    "name": "Mark active image",
    "version": "1.11",
    "description": "Mark image with dashed frame.",
    "permissions": [
        "activeTab",
        "declarativeContent"
    ],
     "content_scripts": [
        {
            "matches": [
                "http://*/*",
                "https://*/*"
            ],
            "css": [
                "imageMarker.css"
            ],
            "js": [
                "imageMarker.js"
            ]
        }
    ],
   "manifest_version": 2
}

imageMarker.js

在下面的示例中,我在页面中用虚线轮廓标记图像(IMG标签)。并避免对当前图像进行重复处理。

// Unique ID for the className.
var MOUSE_VISITED_CLASSNAME = 'crx_mouse_visited';

// Previous dom, that we want to track, so we can remove the previous styling.
var prevDOM = null;

// Mouse listener for any move event on the current document.
document.addEventListener('mousemove', function (e) {
    let srcElement = e.srcElement;

    // Lets check if our underlying element is a IMG.
    if (prevDOM != srcElement && srcElement.nodeName == 'IMG') {

        // For NPE checking, we check safely. We need to remove the class name
        // Since we will be styling the new one after.
        if (prevDOM != null) {
            prevDOM.classList.remove(MOUSE_VISITED_CLASSNAME);
        }

        // Add a visited class name to the element. So we can style it.
        srcElement.classList.add(MOUSE_VISITED_CLASSNAME);

        // The current element is now the previous. So we can remove the class
        // during the next ieration.
        prevDOM = srcElement;
        console.info(srcElement.currentSrc);
        console.dir(srcElement);
    }
}, false);

imageMarker.css

.crx_mouse_visited {
    background-clip: #bcd5eb!important;
    outline: 1px dashed #e9af6e!important;
}

答案 2 :(得分:1)

@pdknsk为每个元素设置此项所能做的是,对于正文的onload事件,运行以下代码:

bod= document.body;
walker = document.createTreeWalker(bod,NodeFilter.SHOW_ELEMENT,null,false);
while (walker.nextNode()){
    walker.currentNode.addEventListener("mouseover",on,false);
    walker.currentNode.addEventListener("mouseout",off,false);
}

并像这样修改打开和关闭:

on=function(elem){ oldBG = this.style.backgroundColor;
                   this.style.backgroundColor='#123456';
                   this.addEventListener("mouseout",function(){this.style.backgroundColor= oldBG},false);
}

要注意的是,这只有在使用element.style对象设置样式时才有效,并且为了使其更加健壮,您需要获取element.style.cssText和进程(使用正则表达式)并修改它。

总而言之,Mohamed Mansour的答案是实现这一目标的最佳方式。