amegan / jquery-flip

Flipboard like effect for jquery and jquery mobile
MIT License
126 stars 38 forks source link

dynamics nested element into flipContainer #19

Closed jedi930 closed 8 years ago

jedi930 commented 8 years ago

Hi, This is not about bug but would like to check with you whether the plugin support scenario of dynamic created nested element under the flipContainer.

I have below code:

during the run time, i dynamic created nested element under the hotdealcard. How can i handle above situation together with the plugin?

Thanks

amegan commented 8 years ago

Hi,

This plugin creates a clone of dom elements under flipContainer just before staring flip gesture (or flip animation). So continuous animation (like Ken Burn's effect for image viewer) or updating dom element periodically (like timer app or chat app) won't fit with this plugin.

So I think the only way you can use this plugin is setting up flipContainers div (or whatever) in HTML page then sent dynamic contents into each of flipContainer using ajax before flip gesture.

I don't have a plan to support a scenario for dynamic elements.

jedi930 commented 8 years ago

Thanks. sent dynamics content into each of the flipContainer work using ajax.