Jump to content
InvisionCommunity.de - Der Deutsche Invision Community Support
Sign in to follow this  
Raver

Problem bei einfügen in ne Portal Box

Recommended Posts

Hallo,

habe wieder mal ein Problem ;)

also:

ich habe neue Buttons erstellt die gehovert sind, nun will ich sie ins Portal einbauen aber es geht nicht, da ich einen Head und einen Body teil hab wie mach ich das?

hier der Code:

<html>

<head>

<title>Hardwaremasters Features</title>

<script type="text/javascript">

<!--

//Uncomment the next line for random transition rollover each time the page is loaded

//document.write('<STYLE TYPE="text/css">.imgTrans{ filter:revealTrans(duration=2, transition='+Math.floor(Math.random()*23)+') }</STYLE>');

//Uncomment the next line for a specific transition rollover (transition=0 to 23)

document.write('<STYLE TYPE="text/css">.imgTrans{ filter:revealTrans(duration=0,transition=9) }</STYLE>');

//Uncomment the next line for fading rollovers

//document.write('<STYLE TYPE="text/css">.imgTrans{ filter:blendTrans(duration=2) }</STYLE>');

var onImages=new Array();

function Rollover(imgName, imgSrc)

{

onImages[imgName] = new Image();

onImages[imgName].src = imgSrc;

}

function turnOn(imgName)

{

if(document.images[imgName].filters != null)

  document.images[imgName].filters[0].stop();

document.images[imgName].offSrc = document.images[imgName].src;

document.images[imgName].src    = onImages[imgName].src;

}

function turnOff(imgName)

{

if(document.images[imgName].filters != null)

  document.images[imgName].filters[0].apply();

document.images[imgName].src = document.images[imgName].offSrc;

if(document.images[imgName].filters != null)

  document.images[imgName].filters[0].play();

}

Rollover("FAQs", "Buttons3/btn_faqs_b.gif");

Rollover("Downloads", "Buttons3/btn_dls_b.gif");

Rollover("PC Lexikon", "Buttons3/btn_lexikon_b.gif");

//-->

</script>

</head>

<body>

<a target="_blank" href="http://www.hardwaremasters.de/zusatz/faq.htm" onmouseover="turnOn('FAQs');" onmouseout="turnOff('FAQs');">

<img name="FAQs" class="imgTrans" src="Buttons3/btn_faqs_a.gif" border="0"></a><p>

<a target="_blank" href="http://www.hardwaremasters.de/zusatz/dl.htm" onmouseover="turnOn('Downloads');" onmouseout="turnOff('Downloads');">

<img name="Downloads" class="imgTrans" src="Buttons3/btn_dls_a.gif" border="0"></a></p>

<p>

<a target="_blank" href="http://www.hardwaremasters.de/zusatz/lexicon.htm" onmouseover="turnOn('PC Lexikon');" onmouseout="turnOff('PC Lexikon');">

<img name="PC Lexikon" class="imgTrans" src="Buttons3/btn_lexikon_a.gif" border="0"></a>

</p>

</body>

</html>

greetz

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×