Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html>
- <head>
- <title>Cambio colore j</title>
- <style>
- table{width:300px ; height:300px ; border:2px solid;}
- p{font-size:67px}
- </style>
- <script>
- function cambioColore(evento){
- var oggMouse
- if(window.navigator.userAgent.indexOf("MSIE")>-1)
- oggMouse=window.event.srcElement//internet explorer
- else
- oggMouse=evento.target//mozilla firefox
- document.getElementById("psy").style.color=oggMouse.style.backgroundColor
- }//CambioColore
- function cambioPixel(evento){
- var oggMouse
- if(window.navigator.userAgent.indexOf("MSIE")>-1)
- oggMouse=window.event.srcElement//internet explorer
- else
- oggMouse=evento.target//mozilla firefox
- document.getElementById("psy").style.fontSize=oggMouse.style.fontSize
- }//cambioPixel
- </script>
- <body>
- <div style="float:left ; width:360px">
- <table onmouseover="cambioColore(event)">
- <tr>
- <td style="background:firebrick"></td>
- <td style="background:lightblue"></td>
- <td style="background:orange"></td>
- <td style="background:lightgreen"></td>
- <td style="background:yellow"></td>
- <td style="background:lightgray"></td>
- </tr>
- </table>
- </div>
- <div style="float:left">
- <p id="psy">GANGNAM STYLE</p>
- </div>
- <div style="clear:both"></div>
- <span style="float:left">
- <table onmouseover="cambioPixel(event)">
- <tr>
- <td style="font-size:10px">10px</td>
- <td style="font-size:20px">20px</td>
- <td style="font-size:30px">30px</td>
- <td style="font-size:40px">40px</td>
- <td style="font-size:50px">50px</td>
- <td style="font-size:60px">60px</td>
- <td style="font-size:70px">70px</td>
- <td style="font-size:80px">80px</td>
- <td style="font-size:90px">90px</td>
- <td style="font-size:100px">100px</td>
- </tr>
- </table>
- </span>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement