ERLEDIGT
NEIN
NEIN
ANTWORTEN
0
0
ZUGRIFFE
869
869
EMPFEHLEN
-
20.02.05 02:28 #1Devilson Tutorials.de Gastzugang
Hi,
Hoffe mir kann jemand helfen, ich bin totaler anfänger und ziemlich verzweifelt
Ich habe eine HPGrafik erstellt in PSH6, dann in Adobe Image Ready mouseover effekte in der Navigation gemacht, da in Fireworks die segmentierungs linien rote schlieren auf dem grafik erzeugt haben.
Habe dann in DW4 die seite importiert und ein iframe, bzw. ein javascript zum scrollen eingesetzt. Dabei gehen mir JEDESMAL die mouse over effekte in der navigation verloren Es ist schon zum heulen Entweder ich kann scrollen und text anzeigen oder ich habe ein mouseover OHNE TEXT Habe auch schon versucht, nachdem das java oder iframe eingefügt war,die mouse over mit DW4 zu machen. Jedoch das gleiche Ergebnis
Here comes the deal: Da es mir sehr wichtig ist, diese HP ans laufen zu kriegen, ist mir eine funktionierende Antwort 10€ wert Sprich den quelltext bearbeitet, so dass ich ihn ohne probleme in DW4 ans laufen kriege. DAS IST KEIN SCHERZ Bin echt fucked up und hoffe jemand kann mir helfen!
Danke im Vorraus
Ralf
hazzard01@gmx.net
Der Quellcode:
<HTML>
<HEAD>
<TITLE>news</TITLE>
<meta http-equiv="Page-Enter" content="blendTrans(Duration=1)">
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<style type="text/css">
<!--
.unnamed1 { font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-style: normal; line-height: normal; font-weight: normal; color: #000000}
-->
</style>
<STYLE>BODY {
BACKGROUND-COLOR: #7a7777
}
P {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 11px; PADDING-BOTTOM: 0px; MARGIN: 0px; COLOR: white; PADDING-TOP: 0px; FONT-FAMILY: Arial, Verdana, Geneva, Helvetica, sans-serif
}
TD {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 11px; PADDING-BOTTOM: 0px; MARGIN: 0px; COLOR: white; PADDING-TOP: 0px; FONT-FAMILY: Arial, Verdana, Geneva, Helvetica, sans-serif
}
DIV {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 11px; PADDING-BOTTOM: 0px; MARGIN: 0px; COLOR: white; PADDING-TOP: 0px; FONT-FAMILY: Arial, Verdana, Geneva, Helvetica, sans-serif
}
A:link {
COLOR: #000000; TEXT-DECORATION: none
}
A:active {
COLOR: #000000; TEXT-DECORATION: none
}
A:visited {
COLOR: #000000; TEXT-DECORATION: none
}
A:hover {
COLOR: #ff3300; TEXT-DECORATION: underline
}
#divCont {
LEFT: 360px; VISIBILITY: hidden; OVERFLOW: hidden; WIDTH: 600px; CLIP: rect(0px 600px 350px 0px); POSITION: absolute; TOP: 80px; HEIGHT: 350px
}
#divText {
LEFT: 0px; POSITION: absolute; TOP: 0px
}
</STYLE>
<SCRIPT language=JavaScript>
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->
<!--
function checkBrowser(){
this.ver=navigator.appVersion
this.dom=document.getElementById?1:0
this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
this.ie4=(document.all && !this.dom)?1:0;
this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0;
this.ns4=(document.layers && !this.dom)?1:0;
this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5)
return this
}
bw=new checkBrowser()
/*****************
You set the width and height of the divs inside the style tag, you only have to
change the divCont, Remeber to set the clip the same as the width and height.
You can remove the divUp and divDown layers if you want.
This script should also work if you make the divCont position:relative.
Then you should be able to place this inside a table or something. Just remember
that Netscape crash very easily with relative positioned divs and tables.
Updated with a fix for error if moving over layer before pageload.
****************/
//If you want it to move faster you can set this lower:
var speed=30
//Sets variables to keep track of what's happening
var loop, timer
//Object constructor
function makeObj(obj,nest){
nest=(!nest) ? '':'document.'+nest+'.'
this.el=bw.dom?document.getElementById(obj):bw.ie4?document.all[obj]:bw.ns4?eval(nest+'document.'+obj):0;
this.css=bw.dom?document.getElementById(obj).style:bw.ie4?document.all[obj].style:bw.ns4?eval(nest+'document.'+obj):0;
this.scrollHeight=bw.ns4?this.css.document.height:this.el.offsetHeight
this.clipHeight=bw.ns4?this.css.clip.height:this.el.offsetHeight
this.up=goUp;this.down=goDown;
this.moveIt=moveIt; this.x; this.y;
this.obj = obj + "Object"
eval(this.obj + "=this")
return this
}
function moveIt(x,y){
this.x=x;this.y=y
this.css.left=this.x
this.css.top=this.y
}
//Makes the object go up
function goDown(move){
if(this.y>-this.scrollHeight+oCont.clipHeight){
this.moveIt(0,this.y-move)
if(loop) setTimeout(this.obj+".down("+move+")",speed)
}
}
//Makes the object go down
function goUp(move){
if(this.y<0){
this.moveIt(0,this.y-move)
if(loop) setTimeout(this.obj+".up("+move+")",speed)
}
}
//Calls the scrolling functions. Also checks whether the page is loaded or not.
function scroll(speed){
if(loaded){
loop=true;
if(speed>0) oScroll.down(speed)
else oScroll.up(speed)
}
}
//Stops the scrolling (called on mouseout)
function noScroll(){
loop=false
if(timer) clearTimeout(timer)
}
//Makes the object
var loaded;
function scrollInit(){
oCont=new makeObj('divCont')
oScroll=new makeObj('divText','divCont')
oScroll.moveIt(0,0)
oCont.css.visibility='visible'
loaded=true;
}
//Call the init on page load
onload=scrollInit;
// -->
</SCRIPT>
<SCRIPT language=JavaScript>
<!--
<!-- Begin
function PopUp(whatURL) {
open( whatURL ,"ProjView","scrollbars=yes,toolbar=no,width=600,height=300");
}
// End -->
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_findObj(n, d) { //v4.0
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && document.getElementById) x=document.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
</SCRIPT>
<META content="MSHTML 5.50.4522.1800" name=GENERATOR>
</HEAD>
<BODY bgProperties=fixed bgColor=7a7777 leftMargin=0 topMargin=0 ? MARGINWIDTH="0"
MARGINHEIGHT="0" onLoad="MM_preloadImages('Navigation/news.jpg')">
<TABLE cellSpacing=0 cellPadding=0 width=718 border=0>
<TBODY>
<TR>
<TD colspan="4">
<DIV id=scrollbuttons
style="Z-INDEX: 2; LEFT: 895px; WIDTH: 34px; POSITION: absolute; TOP: 171px; HEIGHT: 104px; visibility: visible"><A
onmouseover=scroll(-5) onmouseout=noScroll() href="javascript::"><IMG
height=34 hspace=0 width=30
border=0 src="Navigation/scroll_up.jpg"></A><BR>
<IMG height=130 alt="" hspace=0
width=1 border=0><BR>
<A onmouseover=scroll(5) onmouseout=noScroll()
href="javascript::"><IMG height=34 hspace=0 width=30 border=0
src="Navigation/scroll_down.jpg"></A><BR>
</DIV>
<DIV id=divCont style="left: 477px; top: 134px; width: 405px; height: 288px; visibility: visible; clip: rect(0px 600px 380px 0px)">
<DIV class=text id=divText style="left: -252px; top: 419px; width: 400px; height: 706px">
<TABLE width=100% border=0>
<TBODY>
<TR>
<TD vAlign=top height="81">
<!--[[gx type=include id=/wwwroot/templates/std/news.html]][[/gx]]-->
<p class="unnamed1"> </p>
<TABLE cellSpacing=0 cellPadding=0 width=640 border=0>
<TBODY>
<TR>
<TD nowrap height="2"> </TD>
</TR>
</TBODY>
</TABLE>
<p align="left"><font face="Times New Roman, Times, serif" size="4" color="#990000">NEWS</font></p>
</TD>
</TR>
</TBODY>
</TABLE>
<table width="92%" border="0">
<tr>
<td width="1%"> </td>
<td width="14%">
<p> </p>
<p> </p>
</td>
<td width="85%"> </td>
</tr>
</table>
<table width="92%" border="0">
<tr>
<td>
<p align="left">text, blablabla</p>
<font color="#000000" size="1"></font></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td height="89"> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>
<p align="center"> </p>
</DIV>
</DIV>
<font face="Arial" size="2"> </font> <font face="Arial" size="2"> </font>
</TD>
</TR>
</TBODY>
</TABLE>
<br>
<br>
<div align="center"><br>
<table width=800 border=0 cellpadding=0 cellspacing=0>
<tr>
<td> <img src="images/Abstandhalter.gif" width=20 height=1></td>
<td> <img src="images/Abstandhalter.gif" width=7 height=1></td>
<td> <img src="images/Abstandhalter.gif" width=15 height=1></td>
<td> <img src="images/Abstandhalter.gif" width=5 height=1></td>
<td> <img src="images/Abstandhalter.gif" width=8 height=1></td>
<td> <img src="images/Abstandhalter.gif" width=13 height=1></td>
<td> <img src="images/Abstandhalter.gif" width=63 height=1></td>
<td> <img src="images/Abstandhalter.gif" width=4 height=1></td>
<td> <img src="images/Abstandhalter.gif" width=12 height=1></td>
<td> <img src="images/Abstandhalter.gif" width=10 height=1></td>
<td> <img src="images/Abstandhalter.gif" width=15 height=1></td>
<td> <img src="images/Abstandhalter.gif" width=18 height=1></td>
<td> <img src="images/Abstandhalter.gif" width=149 height=1></td>
<td> <img src="images/Abstandhalter.gif" width=117 height=1></td>
<td> <img src="images/Abstandhalter.gif" width=344 height=1></td>
<td></td>
</tr>
<tr>
<td colspan=15> <img src="images/start_01.gif" width=800 height=56></td>
<td> <img src="images/Abstandhalter.gif" width=1 height=56></td>
</tr>
<tr>
<td rowspan=10> <img src="images/start_02.gif" width=20 height=533></td>
<td colspan=6> <a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image62','','Navigation/news.jpg',1)"><img name="Image62" border="0" src="Navigation/news%20org.jpg" width="111" height="35"></a></td>
<td colspan=8> <img src="images/start_04.gif" width=669 height=35></td>
<td> <img src="images/Abstandhalter.gif" width=1 height=35></td>
</tr>
<tr>
<td rowspan=9> <img src="images/start_05.gif" width=7 height=498></td>
<td colspan=6> <img src="images/start_06.gif" width=108 height=28></td>
<td colspan=7> <img src="images/start_07.gif" width=665 height=28></td>
<td> <img src="images/Abstandhalter.gif" width=1 height=28></td>
</tr>
<tr>
<td rowspan=8> <img src="images/start_08.gif" width=15 height=470></td>
<td colspan=6> <img src="images/start_09.gif" width=105 height=29></td>
<td colspan=6> <img src="images/start_10.gif" width=653 height=29></td>
<td> <img src="images/Abstandhalter.gif" width=1 height=29></td>
</tr>
<tr>
<td rowspan=7> <img src="images/start_11.gif" width=5 height=441></td>
<td colspan=6> <img src="images/start_12.gif" width=110 height=30></td>
<td colspan=5> <img src="images/start_13.gif" width=643 height=30></td>
<td> <img src="images/Abstandhalter.gif" width=1 height=30></td>
</tr>
<tr>
<td rowspan=6> <img src="images/start_14.gif" width=8 height=411></td>
<td colspan=6> <img src="images/start_15.gif" width=117 height=31></td>
<td colspan=4> <img src="images/start_16.gif" width=628 height=31></td>
<td> <img src="images/Abstandhalter.gif" width=1 height=31></td>
</tr>
<tr>
<td colspan=7> <img src="images/start_17.gif" width=135 height=27></td>
<td colspan=3 rowspan=3> <img src="images/start_18.gif" width=610 height=246></td>
<td> <img src="images/Abstandhalter.gif" width=1 height=27></td>
</tr>
<tr>
<td rowspan=4> <img src="images/start_19.gif" width=13 height=353></td>
<td colspan=5> <img src="images/start_20.gif" width=104 height=32></td>
<td rowspan=4> <img src="images/start_21.gif" width=18 height=353></td>
<td> <img src="images/Abstandhalter.gif" width=1 height=32></td>
</tr>
<tr>
<td colspan=5 rowspan=3> <img src="images/start_22.gif" width=104 height=321></td>
<td> <img src="images/Abstandhalter.gif" width=1 height=187></td>
</tr>
<tr>
<td rowspan=2> <img src="images/start_23.gif" width=149 height=134></td>
<td> <img src="images/start_24.gif" width=117 height=31></td>
<td rowspan=2> <img src="images/start_25.gif" width=344 height=134></td>
<td> <img src="images/Abstandhalter.gif" width=1 height=31></td>
</tr>
<tr>
<td> <img src="images/start_26.gif" width=117 height=103></td>
<td> <img src="images/Abstandhalter.gif" width=1 height=103></td>
</tr>
</table>
</div>
</BODY></HTML>
Ähnliche Themen
-
XML CSS Formatierung geht verloren
Von aTa im Forum XML TechnologienAntworten: 0Letzter Beitrag: 27.08.10, 11:30 -
Java-Server oder PHP-Script?
Von daddz im Forum Coders TalkAntworten: 5Letzter Beitrag: 10.11.06, 08:30 -
Auswahl in der Selectbox geht geht verloren ...
Von tekton im Forum ASPAntworten: 1Letzter Beitrag: 02.06.06, 20:30 -
Textformatierung geht verloren
Von mrtest im Forum PHPAntworten: 1Letzter Beitrag: 21.09.05, 17:00 -
HANDLE geht verloren
Von sTEk im Forum VisualStudio & MFCAntworten: 4Letzter Beitrag: 18.07.05, 19:32





Login





