Create a Jquery animation like Flipboard popup

7.2k Views Asked by At

I want to implement a Jquery/JS animation like the Flipboard popup animation.

When user clicks on an image, the image will expand to a certain size and its white background expands until it occupies the whole screen.

Once the animation is done the page content will be loaded. http://flipboard.com/

Any help regarding this will be appreciated.

Thanks a lot!

3

There are 3 best solutions below

3
On

Codrops did it a few months back, I can't really write out all the code for you here but give this article a read.

0
On

Codrops have just posted a plugin to do this, and instructions on how to use it. Theres a particularly cool demo of the plugin here.

0
On
<script>

//Finally I found the answer. This is the full code.

$(document).ready(function() { 

    $('.box').click(function(e){

        if( $('div').hasClass('overlay')==false ){

        //event.preventDefault();
        var $box = $(this);

        $('<div class="overlay"></div>').prependTo($box);

        var $overlay = $('.overlay');

        $overlay.css( {
                       'position'       : 'absolute',
                       'background-color'   : 'white',
                       'width'              : $box.outerWidth(true),
                       'height'     : $box.outerHeight(true),
                       'left'       : $box.offset().left,
                       'top'        : $box.offset().top,
                       'z-index'        : 99999999
        });                                       
        //$($placeholder).insertAfter('.box');  

        $overlay.animate({
                width: $(document).width(),
                height: $(document).height(),
                left: '0px',
                top: '0px'
            }, 500, function() {
                //reset the overlay
                $overlay.css({'width': ''});
                $overlay.css({'height': '1500px'});
                //ajax    
                $.ajax({  
                    type: "POST",  
                    url: "../ajax/get_event.php",  
                    data: "firstname=clint&lastname=eastwood",  
                    success: function(resp){  
                        // we have the response  
                        $overlay.html(resp);
                        $('.window').fadeIn(200);
                    },  
                    error: function(e){  
                        alert('Error: ' + e);  
                    }  
                });
        });

        }else{
            //click only on overlay to exit
            var $target = $(e.target);    
            if ( $target.is('.overlay') ) {
               $('.overlay').remove();
            }
        }  

    });//end box click

});//end of jquery
</script>