I'm trying to create an effect where a play button is shown when the mouse is hovering over an image. A good example of this is the videos down below on http://www.anyclip.com/

Can anyone help?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

That was easy: http://www.itsalif.info/content/show-play-icon-mouse-over-thumbnail-using-css

link|improve this answer
@user this doesn't work for me. When I mouse over my images, it simply expands the borders for the div and the play button does not appear. – Tory Jun 20 '11 at 21:18
Should be a comment. Stackoverflow is not a redirection content farm. – Raynos Jun 20 '11 at 21:32
@Tory: Then you integrated it wrong. – Lightness Races in Orbit Jun 20 '11 at 21:32
@Raynos: No, but if the resolution was "use this thing", then that should be the accepted answer. And you can't mark a comment as the accepted answer. – Lightness Races in Orbit Jun 20 '11 at 21:32
@TomalakGeret'kal If the resolution was "use this thing" then the question is too localized and should be closed. – Raynos Jun 20 '11 at 21:36
show 5 more comments
feedback

HTML and CSS can easily position a play image over a thumbnail image. I'm hoping this wasn't your concern; though I've provided some a demonstration below. The Javascript is rather simple as well. Listen for a mouseover event and a mouseout event, and tweak the styles accordingly.

HTML:

<div id="video">
    <img src="playbutton.png" id="play">
</div>

CSS:

#video {
 background-color:blue;
  width:300px;
   height:150px; 
    background-image:url("thumbnail.png");
    position:relative;
}
#play {
    position:absolute;
    height:50px;
    top:50px;
    width:50px;
    left:125px;
    display:none;
}

Javascript:

var elem = document.getElementById("video");
var play = document.getElementById("play");
elem.onmouseover = function() {
        play.style.display = "inline";
};
elem.onmouseout = function() {
        play.style.display = "none";
};

Example

Someday, this will be possible without any Javascript at all. With multiple background images in CSS3, :hover on a thumbnail div could tack on a 'play' background image.

link|improve this answer
To the downvoter: please leave a comment explaining so i can improve my answer. – Thomas Shields Jun 20 '11 at 21:31
This won't work for me. I have a bunch of image thumbnails, I can't have a CSS property for every single one. – Tory Jun 20 '11 at 21:38
@Tory it wouldn't be that hard to change to use class names. But glad you got it figured out. – Thomas Shields Jun 20 '11 at 21:50
feedback

Your Answer

 
or
required, but never shown

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