CSS-Tricks / MovingBoxes

Simple horizontal slider which grows up the current box when it's in focus (image, title & text) and back down when it's not in focus.
http://css-tricks.github.io/MovingBoxes/
GNU Lesser General Public License v3.0
280 stars 147 forks source link

How can I use MovingBoxes Control with Database #47

Closed hassaancs closed 12 years ago

hassaancs commented 12 years ago

IS this possible to Get the results (Pictures, other info) from Databases like Sql Server? When I try to get data from Db it starts firing Exceptions because of Panels... Can anyone help me in this regards?

Mottie commented 12 years ago

How are you adding panels to MovingBoxes? If you look at the main demo, you'll see that you can dynamically add and remove panels, but you'll need to call the plugin function again to update the slider:

$('#slider')
    .append('<li><h2>Header</h2><img src="my-image.jpg"><p>info</p></li>')
    .movingBoxes();
hassaancs commented 12 years ago

I think I ve an older version of the Control. Many things are changed in the download available here and the one which I ve. I will try that on Newer version and let you know about it. Thanks For Reply.