- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试创建一个 chrome 插件来快速阅读网络上的文章。我希望用户可以选择他想要阅读文章的速度,并且插件可以以相同的速度突出显示文章的文本(每个单词)。这可以通过网页的 JavaScript 修改 CSS 来实现,但只有在执行完整的 JavaScript 时才能看到 CSS 的更改,并且所有更改都会立即反射(reflect)出来,而不是一次一个字。我可以用不同的方式实现吗.below 是我的代码。
背景.js
/* Regex-pattern to check URLs against.
It matches URLs like: http[s]://[...]stackoverflow.com[...] */
var urlRegex = /^https?:\/\/(?:[^./?#]+\.)?getpocket\.com/;
/* A function creator for callbacks */
function doStuffWithDOM(element) {
alert("I received the following DOM content:\n" + element.toString());
}
/* When the browser-action button is clicked... */
chrome.browserAction.onClicked.addListener(function(tab) {
/*...check the URL of the active tab against our pattern and... */
if (urlRegex.test(tab.url)) {
/* ...if it matches, send a message specifying a callback too */
chrome.tabs.sendMessage(tab.id, { text: "report_back" },
doStuffWithDOM);
}
});
内容.js
// Listen for messages
chrome.runtime.onMessage.addListener(function (msg, sender, sendResponse) {
// If the received message has the expected format...
if (msg.text === 'report_back') {
// Call the specified callback, passing
// the web-page's DOM content as argument
//var outerHTML = document.querySelector('.text_body').outerHTML;
//sendResponse(document.all[0].outerHTML);
//var outerHTML = document.all[0].outerHTML;
var outerHTML = document.querySelector('.text_body').outerHTML;
var outerHTML1 = outerHTML;
var j=0;
var k = 0;
var searchText = ' ';
for(i=outerHTML.indexOf(searchText);i<outerHTML.length;i = outerHTML.indexOf(searchText,i+1))
{
outerHTML1 = "<mark>" + outerHTML1.substring(0,i)+ "</mark>"+ outerHTML1.substring(i+1,outerHTML1.length-1);
for(k=0;k<500;k++)
{
console.log(k);
}
k = 0;
document.querySelector('.text_body').outerHTML = outerHTML1;
//sendResponse(document.querySelector('.text_body').outerHTML);
console.log(i);
}
sendResponse("it works!");
/*for (index = outerHTML.indexof(" ") , index1 = 0; index < outerHTML.length() ; index1 = index ,index = outerHTML.indexof(index , " "))
{
outerHTML = outerHTML.substring(index1,index-1) + "<span class='highlight'>" + outerHTML.substring(index1,index+text.length) + "</span>" + outerHTML.substring(index + text.length);
inputText.outerHTML = outerHTML
}*/
}
});
list .json
{
"manifest_version": 2,
"name": "Test Extension",
"version": "0.0",
"background": {
"persistent": false,
"scripts": ["background.js"]
},
"content_scripts": [{
"matches": ["*://*.getpocket.com/*"],
"js": ["content.js"]
}],
"browser_action": {
"default_title": "Test Extension"
},
"permissions": ["activeTab"]
}
最佳答案
这是一个working JsFiddle .我留下了一些功能,比如使用动态文本来突出显示、处理文本大小写和时间间隔。希望你能在这些事情上努力。如果您需要其他帮助,请告诉我。
解释使用的代码。我找到所有名为 software
的文本在我的 div 中并将其替换为 <span class='highlight'>software</span>
后来我有一个每秒运行一次的间隔函数(您必须根据您的用户速度更改它)并逐字突出显示文本。
$(function(){
var docText = $('#docContent')[0].innerHTML;
var modifiedText = docText.replace(/software/g, "<span class='highlight'>software</span>");
$('#docContent').html(modifiedText);
setInterval(function() {
debugger;
$('span.highlight:not(.highlight-active):eq(0)').addClass('highlight-active');
}, 1000); //60*1000
});
我的 Div 部分有
<div id="docContent">
<p>
software
from wikipedia, the free encyclopedia
for other uses, see software (disambiguation).
computer software also called a program or simply software is any set of instructions that directs a computer to perform specific tasks or operations. computer software consists of computer programs, libraries and related non-executable data (such as online documentation or digital media). computer software is non-tangible, contrasted with computer hardware, which is the physical component of computers. computer hardware and software require each other and neither can be realistically used without the other.
at the lowest level, executable code consists of machine language instructions specific to an individual processor—typically a central processing unit (cpu). a machine language consists of groups of binary values signifying processor instructions that change the state of the computer from its preceding state. for example, an instruction may change the value stored in a particular storage location in the computer—an effect that is not directly observable to the user. an instruction may also (indirectly) cause something to appear on a display of the computer system—a state change which should be visible to the user. the processor carries out the instructions in the order they are provided, unless it is instructed to "jump" to a different instruction, or interrupted.
software written in a machine language is known as "machine code". however, in practice, software is usually written in high-level programming languages that are easier and more efficient for humans to use (closer to natural language) than machine language.[1] high-level languages are translated into machine language using a compiler or an interpreter or a combination of the two. software may also be written in a low-level assembly language, essentially, a vaguely mnemonic representation of a machine language using a natural language alphabet. assembly language is translated into machine language using an assembler.
</p>
</div>
以及使用的css
.highlight-active{
background-color:yellow;
color:green;
}
关于javascript - 使用javascript修改网页的CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35533084/
这个问题与窗口处理或多个浏览器窗口的杂耍无关,而是关于在同一窗口中浏览 Web 应用程序的网页。我遇到这样的情况 1.我导航为屏幕 A->屏幕 x->屏幕 Y->屏幕 B 2.我需要捕获首次登录时屏幕
我有这个要求: The system will record the length of time the user displayed each page. 虽然在富客户端应用程序中微不足道,但我不
我在调试 JavaScript 网页时遇到问题。我遇到困难的地方是我标记 (...) 的地方。我收到未定义的错误。我是否将函数 countDown(start, Increment) 中的参数(即 s
需要一些帮助。我刚开始学习 HTML,今天一直在研究如何制作菜单,但在这样做时遇到了问题。 我似乎不知道如何在屏幕上居中显示菜单。 这就是我目前所拥有的; Home
我想通过单击按钮将小程序的任何参数发送到浏览器。 (HTML)。我知道按钮对象有一些方法,但不知道使用哪个。我怎样才能做到这一点?ps .: 我使用的是 jnlp 协议(protocol)。 类似于:
我应该使用Wikipedia的文章链接数据转储从组织的网站中提取代表性术语。 为此,我已经- 抓取并下载了该组织的网页。 (〜110,000) 创建了Wikipedia ID和术语/标题的字典。 (约
我的网页中包含 javascript 函数... function callFromAndroid(varName) { alert("call from android activated by
我想创建一个 Java 应用程序,允许用户导入网页并能够在程序中对其进行编辑。 导入网页将对其进行渲染,并且页面的组件(图像、文本等)将是可编辑或可拖动的,从而允许用户重新布局组件。 例如,用户可以加
当我们按下按钮时,我向 JFrame 添加了一个网页(网页在同一框架中打开)。效果很好。但我想向其中添加一个scrollPane,但是当我添加 JScrollPane jsp = new JScrol
我在使用 particles.js 时无法将图像居中。图像居中,但略微偏离中心。为什么要这样做,我如何才能将它居中? html particles.js demo CSS
我正在尝试在加载页面时播放音频,它应该非常简单但我无法完成。 问题是它没有播放,我尝试检查自动播放的状态(真/假),它说它在页面加载时播放,尽管它没有播放,还尝试制作一个将改变自动播放的功能状态为
我正在尝试显示用户从列表中选择的图像,但我在屏幕上看不到任何内容。 .container { position: relative; } .ce
这听起来有点奇怪,但我需要一些帮助,网页必须有一行必须包含三个部分,第一部分必须有 1 列的偏移量,并且部分之间的空间必须是 10px到目前为止,使用 Bootstrap 一切顺利。 现在第二行将有
这个问题在这里已经有了答案: Web and physical units (2 个答案) Div width in cm (inch) (6 个答案) 关闭 9 年前。
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
我想将我的 IPython 笔记本的宽度设置为 2500 像素,并且我希望它左对齐。我该怎么做? 我使用这段代码来应用我自己的 CSS: from IPython.core.display impor
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 7 年前。 Improve this q
我在 Word 中制作了一份文档,希望人们在其中添加自己的姓名以及他们的教学经验。我已将其保存为网页并发布到此处: http://epicforum.net/TS ...但操作部分实际上就是这样: h
这个问题在这里已经有了答案: Execute JS code after pressing the spacebar (5 个答案) 关闭 4 年前。
我正在开发一个只有两个页面的网站。 1.登录 2.首页 我正在使用 Angular 框架。 app.config(['$routeProvider', function ($routeProvider
我是一名优秀的程序员,十分优秀!