Originalmente inviato da
FreePhotoProject
...premetto che non conosco molto il CSS...
vorrei ottenere un effetto sfumato dell' underline che si crea sotto al testo quando è un link (...).
Siccome non ho capito perfettamente quello che hai detto, ho creato una Pagina con alcuni esempi utilizzando lo sfondo ( colore ) del tuo sito . . Forse volevi qualcosa del genere ? Il Codice per questo effetto particolare ( arancione - giallo - underline ) è il seguente - prima il CSS poi javaScript infine il link testuale ( non è permesso utilizzare B , I , Font all'interno del tag "a href" ).
Codice:
<STYLE><!--
a.fade:link { TEXT-DECORATION: none; color: #fd8e27 }
a.fade:hover { TEXT-DECORATION: underline }
a.fade:visited { TEXT-DECORATION: none; color: #fd8e27 }
p { font-family: Modern, Courier New; font-size:33px }
//--></STYLE>
<SCRIPT language=JavaScript><!--
/*************
**** <config>
**/
fadeColor = "#eeee00"; // color to fade to
stepIn = 20; // delay when fading in
stepOut = 30; // delay when fading out
/* set to true or false; true will
** cause all links to fade automatically
** (you won't need to add class="fade")
***/
autoFade = false;
/* set to true or false; true will cause all CSS
** classes with "fade" in them to fade onmouseover
***/
sloppyClass = true;
/**
**** </config>
**************/
hexa = new makearray(16);
for(var i = 0; i < 10; i++)
hexa[i] = i;
hexa[10]="a"; hexa[11]="b"; hexa[12]="c";
hexa[13]="d"; hexa[14]="e"; hexa[15]="f";
document.onmouseover = domouseover;
document.onmouseout = domouseout;
fadeColor = dehexize(fadeColor.toLowerCase());
var fadeId = new Array();
function dehexize(Color){
var colorArr = new makearray(3);
for (i=1; i<7; i++){
for (j=0; j<16; j++){
if (Color.charAt(i) == hexa[j]){
if (i%2 !=0)
colorArr[Math.floor((i-1)/2)]=eval(j)*16;
else
colorArr[Math.floor((i-1)/2)]+=eval(j);
}
}
}
return colorArr;
}
function domouseover() {
if(document.all){
var srcElement = event.srcElement;
if ((srcElement.tagName == "A" && autoFade && srcElement.className != "nofade") || srcElement.className == "fade" || (sloppyClass && srcElement.className.indexOf("fade") != -1)) {
if (!srcElement.startColor) {
srcElement.startColor = (srcElement.style.color)? srcElement.style.color: srcElement.currentStyle.color;
srcElement.startColor = dehexize(srcElement.startColor.toLowerCase());
}
fade(srcElement.startColor,fadeColor,srcElement.uniqueID,stepIn);
}
}
}
function domouseout() {
if (document.all){
var srcElement = event.srcElement;
if ((srcElement.tagName == "A" && autoFade && srcElement.className != "nofade") || srcElement.className == "fade" || (sloppyClass && srcElement.className.indexOf("fade") != -1)) {
fade(fadeColor,srcElement.startColor,srcElement.uniqueID,stepIn);
}
}
}
function makearray(n) {
this.length = n;
for(var i = 1; i <= n; i++)
this[i] = 0;
return this;
}
function hex(i) {
if (i < 0)
return "00";
else if (i > 255)
return "ff";
else
return "" + hexa[Math.floor(i/16)] + hexa[i%16];
}
function setColor(r, g, b, element) {
var hr = hex(r); var hg = hex(g); var hb = hex(b);
element.style.color = "#"+hr+hg+hb;
}
function fade(s,e,element,step) {
var sr = s[0]; var sg = s[1]; var sb = s[2];
var er = e[0]; var eg = e[1]; var eb = e[2];
if (fadeId[0] != null && fade[0] != element) {
var orig = eval(fadeId[0]);
setColor(orig.startColor[0],orig.startColor[1],orig.startColor[2],orig);
var i = 1;
while(i < fadeId.length) {
clearTimeout(fadeId[i]);
i++;
}
}
for(var i = 0; i <= step; i++) {
fadeId[i+1] = setTimeout("setColor(Math.floor(" +sr+ " *(( " +step+ " - " +i+ " )/ " +step+ " ) + " +er+ " * (" +i+ "/" +
step+ ")),Math.floor(" +sg+ " * (( " +step+ " - " +i+ " )/ " +step+ " ) + " +eg+ " * (" +i+ "/" +step+
")),Math.floor(" +sb+ " * ((" +step+ "-" +i+ ")/" +step+ ") + " +eb+ " * (" +i+ "/" +step+ ")),"+element+");",i*step);
}
fadeId[0] = element;
}
/*****************************************\
|| Fade Script Version 3.0 ||
|| http://anarchos.xs.mw/fade.phtml ||
|| (c) April 2001 ||
|| _____________________________________ ||
|| Created by: ||
|| Anarchos > anarchos.xs.mw ||
|| _____________________________________ ||
|| auto-startColor by Mike West ||
|| mike@westman.org ||
|| _____________________________________ ||
|| uniqueID upgrade by DubMatrix ||
|| http://www.princefari.com ||
|| _____________________________________ ||
|| Color conversion from decimal to ||
|| hex (dehexize function) by: ||
|| Litejet > litejet@hotmail.com ||
|| _____________________________________ ||
|| Fade, hex, setColor functions by: ||
|| Dak Phoenix > phoenix-archetypes.com ||
|| _____________________________________ ||
|| domouseover/out based on scripts by ||
|| The Shadow > www.icon.co.za/~andrewk ||
|| ||
\*****************************************/
//--></SCRIPT>
</head><body bgColor="#aaaaaa">
<p><a class="fade" target="_top" href="URL">TESTO</a></p>
Come puoi notare , è possibile far convivere più combinazioni di colori nella stessa pagina Web . . Se non era questo che volevi, ma un semplice passaggio tra due colori ( senza il "fade" ), allora il CSS è semplicissimo:
Codice:
<STYLE><!--
p.arancioscu {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size:13px;
color:#fd8e27
}
a.arancioscu:link { color: #fd8e27; TEXT-DECORATION: none }
a.arancioscu:hover { color: #ddcc00; TEXT-DECORATION: underline }
a.arancioscu:visited { color: #fd8e27; TEXT-DECORATION: none }
//--></STYLE>
</head><body bgColor="#aaaaaa">
<p class="arancioscu">
<a class="arancioscu" target="_top" href="URL">TESTO</a> </p>
EDIT: L'effetto "fade" NON funziona su Firefox , per cui è inutile andare a vedere la pagina con gli esempi con quel browser . . purtroppo molti Script del mio sito, il Firefox non li riconosce e non li esegue, in questo caso ci vuole proprio il vecchio caro Int. Explorer. .