Version compl�te: jsB@nk » Snippet » Texte Changer onmouseover script
URL: https://www.javascriptbank.com/text-changer-onmouseover-script.html
Faites défiler la la souris sur mon nom pour voir l'effet. CSS peut être utilisé pour rendre le texte plus exactement la même que celle qui l'entourent.
Version compl�te: jsB@nk » Snippet » Texte Changer onmouseover script
URL: https://www.javascriptbank.com/text-changer-onmouseover-script.html
<script>function changename(ta){ if (ta.cols == 5) { ta.value = 'Steve Waring that is'; ta.cols = 20; } else { ta.value = 'Steve'; ta.cols = 5; }}</script><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->
<form>My name is <textarea style="border: 0px none ; background-color: transparent; overflow: hidden;" rows="1" cols="5" readonly="readonly" onmouseover="changename(this)">Steve</textarea>.<br>Scroll the mouse over my name to see the effect. CSS can be used to make the text exactly the same as that surrounding it.</form><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->