Last active
April 29, 2016 03:21
-
-
Save kainy/e20c86ef945e79bc6f0298a302befe13 to your computer and use it in GitHub Desktop.
Revisions
-
kainy revised this gist
Apr 29, 2016 . 1 changed file with 8 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,8 @@ javascript: (function() { [].forEach.call(document.querySelectorAll('*[otitle]'), function(a) { a.title= 'otitle内容:【 '+ a.getAttribute('otitle')+' 】'; setInterval(function(){ a.style.outline = "2px solid #" + (~~(Math.random() * (1 << 12))).toString(16) }, 100) }, 6); })(); -
kainy created this gist
Apr 29, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ javascript: setInterval(function() { [].forEach.call(document.querySelectorAll('*[otitle]'), function(a) { a.style.outline = "2px solid #" + (~~(Math.random() * (1 << 12))).toString(16) }, 5); }, 100)