I just stumbled across this guys site: http://mantia.me/

He has an awesome logo that reacts to the content the site is currently showing, if you wait on his homepage the logo changes with the slide show of images. I was wondering if anyone knows how to replicate the effect. I'm guessing it's a transparent png with a rotating master background then the site is layered on top, but I'm probably wrong.

Any guesses on how to make something similiar?

Images:enter image description here enter image description here

link|improve this question

75% accept rate
feedback

2 Answers

up vote 6 down vote accepted

It's really simple what he has. Like you mention it's a transparent PNG that matches the given background ( in this case white ) and places it on top of it with z-index. The rest is just jQuery with fadeIn and fadeOut images.

You can view the png on top of the image transitions. enter image description here

So basically you just need a div with position:relative set the width the height of it; then add another div inside it which has the jQuery Slideshow (check this out: http://medienfreunde.com/lab/innerfade/), set it a z-index:0 Then add another div (which will go on top of the slider) and add it a background with z-index to something higher than 0 and you're good to go.

link|improve this answer
Please note this is an explanation; to make you understand how it works. Rather than giving you the complete code (spoon feeding is bad). I think it's valuable to understand how it works instead of just copy pasting. – kuroir May 30 '11 at 17:59
The key image is the one called "nav.png". – Pointy May 30 '11 at 18:00
Indeed. That contains the background with the TEXT form on it. – kuroir May 30 '11 at 18:02
Thanks kuroir, I thought it might be to do with z-index. I'm not that well versed with CSS so this helps a bunch. Understanding the theory is 100x better than copying code. – olliejudge May 30 '11 at 18:32
I'm really glad I could be of service. Kudos for having that way of thinking. Learn as much as you can. Cheers. – kuroir May 30 '11 at 18:33
feedback

Here is how he does it:

HTML

<div id="content">
    <div id="feature"></div>
    <div id="navigation"></div>
</div>

CSS

#content {
    position: relative;
    width: 800px;
    margin: 64px auto;
    font: normal 13px/16px "myriad-pro-1","myriad-pro-2", sans-serif;
    color: #404040;
}

#navigation{
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 800px;
    height: 46px;
    background: transparent 
      url(http://mantia.me/wp- content/themes/minimalouie/img/nav.png) 
      no-repeat top left;
}

#feature {
    width: 800px;
    height: 466px;
    overflow: hidden;
    background-color: aqua;
}

And then he just adds an img element to #feature.

<div id="feature">
    <img src="http://mantia.me/images/supermariobros_large.jpg" 
      alt="Super Mario Bros.">
</div>

See fiddle.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.