I'm using Nivo slider, but want to place a PNG image over the slider so it only shows through the parts that are transparent. What would be the best way to do this using JavaScript or CSS?

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted
+50

Change the demo using the code below to see how this can be done. There are a lot of ways to do this so you should figure out what works best for your situation. The code below wraps the slider and another relatively placed image inside of the same div. A bit of CSS is used to position the the image and you can see the effect in action.

HTML

<div id="outer-wrapper">

            <div id="slider" class="nivoSlider">
                <img src="images/toystory.jpg" alt="" />
                <a href="http://dev7studios.com"><img src="images/up.jpg" alt="" title="This is an example of a caption" /></a>
                <img src="images/walle.jpg" alt="" />
                <img src="images/nemo.jpg" alt="" title="#htmlcaption" />
            </div>
            <div id="slider-mask"></div>
</div>  

CSS

#outer-wrapper {
    width:618px;
    height:246px;
    margin-left:190px;
}

#slider-mask {
    position:relative;
    background:url(images/mask.png) no-repeat;
    width:618px;
    height:246px;
    top:-246px;
    left:0;
    z-index:100;
}

Image Used enter image description here

Screenshot of the effect enter image description here

link|improve this answer
@GavinR: Glad it is working for you. Since you have accepted the answer, are you waiting for other answers before awarding the bounty? – Alison May 9 '11 at 19:32
Unfortunately, this method causes the navigation buttons that are overlaid, as well as any hyperlinks within the caption, to be completely unclickable. – Michael Irigoyen Sep 20 '11 at 14:53
@Michael Irigoyen: Obviously but that's what the OP has asked for. I agree that it's not something you generally want to be doing but it's not deserving of a downvote. If you're trying to protect future generations of Nivo Slider users from harming themselves then a downvote of the question itself would make more sense. – Alison Sep 20 '11 at 15:04
feedback

look this slider (example).

link|improve this answer
This is not a solution. – GavinR May 3 '11 at 20:37
feedback

Just set the PNG to be absolute positioned and move it over top of the nivo slider. Make sure that the z-index is set to be above the slider.

link|improve this answer
I've tried absolutely positioning, but that positions the img absolutely on the page - not what i want. – GavinR May 3 '11 at 22:16
You can make the absolute positioning relative to something else. Take a look at this and see if it helps: w3schools.com/css/css_positioning.asp – Jimmy May 3 '11 at 22:47
More specifically, create a parent div for both the image and the slider, and set it to position:relative. Then when you're absolute positioning the png, it will be positioned absolutely in the div. – Jimmy May 3 '11 at 22:49
feedback

absolute positioned divs when placed with in relative positioned div than they give your required result.

position your nivo slider container as relative positioned and put the mask div within the nivo slider container and position that absolute.

hope it will help you

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.