Ablac
Active member
What were trying to do is have 2 Website logos crossfade into eachother, so 2 Logos.
Logo A
Logo B
Logo A fades slowly till it completely disappear and Logo B Starts to fade in till its fully visible and then it fades out till it completely disappear and Logo A Starts to fade in till its fully visible, and it repeats that process.
We suck at HTML/PHP/CSS Ect, but heres what we got and its got a terrible result.
And the CSS for that
Currently we have it displaying the same logo for both to test but the logos are showing up in the wrong spots.
Our Style is Animate by XenFocus, my website is http://angel-gaming.com
Logo A
Logo B
Logo A fades slowly till it completely disappear and Logo B Starts to fade in till its fully visible and then it fades out till it completely disappear and Logo A Starts to fade in till its fully visible, and it repeats that process.
We suck at HTML/PHP/CSS Ect, but heres what we got and its got a terrible result.
Code:
<div id="logoBlock">
<div class="pageWidth">
<div class="pageContent">
<xen:if is="{$canSearch}"><xen:include template="search_bar" /></xen:if>
<xen:include template="ad_header" />
<xen:hook name="header_logo">
<a href="{$logoLink}" id="xf_logo">
<div id="portfolio_cycler">
<img class="active" src="http://localhost/template/images/aglogo.png" style="display: block; z-index: 2;" />
<img class="" src="http://localhost/template/images/aglogo.png" style="display: block; z-index: 1;" />
</div>
</a>
</xen:hook>
<span class="helper"></span>
<script src="http://localhost/template/images/logo2.js" type="text/javascript">
</script>
</div>
</div>
</div>
And the CSS for that
Code:
#portfolio_cycler{position:relative;}
#portfolio_cycler img{position:absolute;z-index:1}
#portfolio_cycler img.active{z-index:2}
Currently we have it displaying the same logo for both to test but the logos are showing up in the wrong spots.
Our Style is Animate by XenFocus, my website is http://angel-gaming.com