Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know that it's not a very precise (very technical) question, but I would like to ask moderators for some kindness and not to close the thread straight away.

I am planning of selling a line of greeting cards and I was thinking for such a thumbnail effect for a while.

In here http://www.hallmark.com/Product/ProductDetails/1PGC4517_DK you can see a greeting which has a grey part (a snippet of back page) on top of it. I would like to add this part to my thumbnails and on hover this part should slightly close down (not to appear and disappear - I can achieve this with css), more like animation - nice an slightly down, when active - this part again would go up. Ofcourse, no flash.

Any ideas? Thanks in advance!

share|improve this question
What do you mean by "close down"? I'm interpreting that to mean the size changes slightly or the opacity changes. – Craig M Jul 13 '11 at 21:50
So you want to make it look like the card is closing when you hover over the image? – Justin ᚅᚔᚈᚄᚒᚔ Jul 13 '11 at 21:52

closed as not a real question by Paul Sonier, genesis, Residuum, Don Roby, Graviton Jul 14 '11 at 2:00

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

I would say that you can achieve this effect with jQuerys .fadeIn() method

share|improve this answer

use jquery's method animation

http://sandbox.phpcode.eu/g/1ece111332dddda096dc1a77082fc24b.php

<script>
$(function(){
    $("#what_to_animate").animate({'width':'+=200'}, 2000);
});
</script>
<div id="what_to_animate" style="width:1px;background-color:green;height:20px;"></div>

or fadeIn

http://sandbox.phpcode.eu/g/92a14b7394376684470d8cfc29839169.php

<script>
$(function(){
    $("#what_to_animate").fadeIn(2000);
});
</script>
<div id="what_to_animate" style="display:none;width:200px;background-color:green;height:200px;"></div>
share|improve this answer
genesis, it looks cool, what you showed me is like a loading line, but it is not really what I need. I need the element to drop down on hover and go up on active. Sorry, if I did not get you as I am new to jquery. – funguy Jul 13 '11 at 21:53
fade in will be my last resort as it is not what I was looking for, but it could be ok.. – funguy Jul 13 '11 at 22:05

Simple with JQuery and CSS:

HTML:

<div id="wrapper">
    <div id="bg">
    </div>
    <div id="card">
        <img src="http://evangelsupply.com/ec17.jpg" height="100" />
    </div>
</div>

JQuery:

$('#wrapper').mouseenter(function(){
    $('#bg').animate({
        top:'200px'
    },100); 
});

$('#wrapper').mouseleave(function(){
    $('#bg').animate({
        top:'0'
    },100); 
});

CSS:

#wrapper {
    overflow:hidden;
    position:relative;
    width:200px;
    height:200px;
    border:1px solid #666;
}

#bg {
    background: #FFF;
    background: -moz-linear-gradient(top, #FFF 0%, #CCC 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFF), color-stop(100%,#CCC));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#CCCCCC',GradientType=0 );
    width:200px;
    height:200px;
    position:absolute;
    top:0;
    left:0;
    z-index:1;
}

#card {
    width:200px;
    height:150px;
    padding-top:50px;
    text-align:center;
    position:absolute;
    top:0;
    left:0;
    z-index:1;
    cursor:pointer;
}

Example: http://jsfiddle.net/AlienWebguy/3fgGr/

share|improve this answer
You are really cool if you wrote this right now :). – funguy Jul 13 '11 at 22:03
In your example it seems like the background has this effect, not the top of the card. – funguy Jul 13 '11 at 22:03
I did - you are really cool if you accept it as the best answer ;) – AlienWebguy Jul 13 '11 at 22:03
Thought that's what you wanted. Looking back on your question are you asking to give a flat image the illusion that it's "opened up" ? – AlienWebguy Jul 13 '11 at 22:06
AlienWebguy, is it possible to determine the speed, as it is too quick. I tried several options on your link, but it seems it has to be something more complex. – funguy Jul 13 '11 at 22:08
show 4 more comments

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