View Single Post
ישן 13-06-06, 07:21   # 1
-VladK-
הוסטסניון
 
-VladK-'s Avatar
 
מיני פרופיל
תאריך הצטרפות: Apr 2006
גיל: 34
הודעות: 2,182

-VladK- לא מחובר  

זה לא עובד אצלי בFF...אההההם יש פתרון לשתי הדפדפנים?


עריכה:

טוב הנה משהו שמצאתי בSETUP (איציק1 לשעבר)
את זה לשים בHEAD:
HTML קוד:
<script language="JavaScript1.2">
/*
Gradual-Highlight Image Script- 
© Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions,
100's more DHTML scripts, and Terms Of
Use, visit dynamicdrive.com
*/
function high(which2){
theobject=which2
highlighting=setInterval("highlightit(theobject)",50)
}
function low(which2){
clearInterval(highlighting)
which2.filters.alpha.opacity=20
}
function highlightit(cur2){
if (cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=5
else if (window.highlighting)
clearInterval(highlighting)
}
</script>
ואתה זה בBODY:
HTML קוד:
<a href="your.html"><img src="your.gif" style="filter:alpha(opacity=40)" onMouseover="high(this)" onMouseout="low(this)"></a>
תהנה!

Last edited by meshuga; 13-06-06 at 08:44..
  Reply With Quote