»
Tiếng AnhTiếng PhápTiếng Việt

In - Tô màu từng đoạn trong trang web - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Biểu mẫu » Tô màu từng đoạn trong trang web
URL: https://www.javascriptbank.com/rollover-effect-for-whole-paragraphs-and-tables.html

Tô màu từng đoạn trong trang web © JavaScriptBank.comHiệu ứng sẽ tự động tô sáng các đoạn trong trang web mỗi khi người dùng rê con trỏ chuột đến chúng.

Phiên bản đầy đủ: jsB@nk » Biểu mẫu » Tô màu từng đoạn trong trang web
URL: https://www.javascriptbank.com/rollover-effect-for-whole-paragraphs-and-tables.html



JavaScript
<SCRIPT>// CREDITS:// Rollovereffect for whole paragraphs and tables// by Urs Dudli and Peter Gehrig // Copyright (c) 2001 Peter Gehrig and Urs Dudli. All rights reserved.// rollover-colorvar color_onmouseover="FFFF00"// do not edit the varibales belowvar obj     var color_onmouseoutif (document.all) {    document.onmouseover=showmouseovercolor;    document.onmouseout=showmouseoutcolor;}function showmouseovercolor() {obj=event.srcElement    if (obj.tagName!='BODY') {color_onmouseout=obj.style.backgroundColorobj.style.backgroundColor=color_onmouseover}}function showmouseoutcolor() {obj=event.srcElement    if (obj.tagName!='BODY') {obj.style.backgroundColor=color_onmouseout}}</script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->