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.

In Fancybox 2.0 (using NextGen Gallery), the elastic option makes images appear from center of screen, not image origin

I would it to appear to come from the image position like in the example. I've coppied the exact code from the example, but didn't get the desired results

website: http://www.beerpong.kevindaniels.net/competitive-beer-pong/wsobp-archive/wsobp-7/

EDIT : My code (moved from comment)

jQuery('.fancybox').fancybox({
    openEffect: 'elastic',
    openSpeed: 150,
    closeEffect: 'elastic',
    closeSpeed: 150,
    prevEffect: 'none',
    nextEffect: 'none',
    closeBtn: false,
    helpers: {
        title: {
            type: 'inside'
        },
        buttons: {}
    },
    afterLoad: function () {
        this.title = 'Image ' + (this.index + 1) + ' of ' + this.group.length + (this.title ? ' - ' + this.title : '');
    }
}).removeAttr("title");
share|improve this question
My code: jQuery('.fancybox').fancybox({ openEffect : 'elastic', openSpeed : 150, closeEffect : 'elastic', closeSpeed : 150, prevEffect : 'none', nextEffect : 'none', closeBtn : false, helpers : { title : { type : 'inside' }, buttons : {} }, afterLoad : function() { this.title = 'Image ' + (this.index + 1) + ' of ' + this.group.length + (this.title ? ' - ' + this.title : ''); } }).removeAttr("title"); – Kevin Daniels Jan 28 at 19:53

1 Answer

Add this option: 'orig': $(this)

It sets the origin of the effect to the element being clicked.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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