Hi there,
I like to implement a 3d carousel, but a hav trouble with the implementation..
Could some some give me a hint? I like to use this one http://interface.eyecon.ro/demos/carousel.html

I tried to put that in a page, but it doesn't work.. how can i solve this?

Cheers

<div id="carousel">
		<a href="" title=""><img src="" width="100%" /></a>
		<a href="" title=""><img src="" width="100%" /></a>
		<a href="" title=""><img src="" width="100%" /></a>
		<a href="" title=""><img src="" width="100%" /></a>
		<a href="" title=""><img src="" width="100%" /></a>
</div>

<?php
drupal_add_js('all/js/interface/compressed/carousel.js');
  '$(document).ready(function(){
     $('#carousel').Carousel({
	itemWidth: 110,
	itemHeight: 62,
	itemMinWidth: 50,
	items: 'a',
	reflections: .5,
	rotationSpeed: 1.8
	});
  });'

Comments

Mohammed J. Razem’s picture