0

我是歌剧扩展开发的初学者。

歌剧中的firefox xul覆盖是否有等价物?

当我将鼠标悬停在文本上时,我想创建临时覆盖。当鼠标离开文本时,覆盖应该改变或消失。

4

1 回答 1

0

要与特定页面交互,您需要使用注入脚本。这是一个 JavaScript 文件(实际上是 UserScript/UserJS),位于名为includes.

在此文件中,您可以为纯 CSS 工具提示添加代码,例如在此处找到的代码:http://sixrevisions.com/css/css-only-tooltips/,然后将 CSS 附加到页面中的样式元素。

这个例子应该给你一些可以建立的东西:

// includes/injected.js
window.addEventListener('DOMContentLoaded', function() {
    // Set the CSS for the tooltip
    var tooltipCSS = '.tooltip {position: relative;}.tooltip span {margin-left: -999em; position: absolute;} .tooltip:hover span {border-radius: 5px 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 5px 5px rgba(0, 0, 0, 0.1); -moz-box-shadow: 5px 5px rgba(0, 0, 0, 0.1); position: absolute; left: 1em; top: 2em; z-index: 99; margin-left: 0; width: 250px;} .classic {padding: 0.8em 1em;} * html a:hover {background: transparent;} .classic {background: #FFFFAA; border: 1px solid #FFAD33; color: #333333;}';

    // Set the text for the tooltip
    var tooltipText = 'This is a tooltip';

    // Add the CSS to the page
    var style = document.createElement('style');
    style.textContent = tooltipCSS;
    document.head.appendChild(style);

    // Loop through all links to add "tooltip" class and extra <span>
    var links = document.getElementsByTagName('a');
    for (var i = 0, len = links.length; i < len; i++) {
        links[i].classList.add('tooltip');
        links[i].innerHTML += '<span class="classic">' + tooltipText + '</span>';
    }
}, false);
于 2012-10-09T02:15:17.083 回答