I'm working on a horizontal scrolling website with images that have different widths but a fixed height. I want to use clickable tags that move to each corresponding image I have managed to get most of what I want using noobslide.js with tags that scroll the images horizontal but only at a fixed distance. Is it possible to have each tag move at its needed distance. This is the javascript I am working with and just so you know I am a novice at this. I appreciate any help that you are willing to give and thanks in advance.
<script type="text/javascript">
window.addEvent('domready',function(){
var nS4 = new noobSlide({
box: $('box4'),
items: $$('#box4 div'),
size: 500,
handles: $$('#handles span'),
onWalk: function(currentItem,currentHandle){
$('info4').set('html',currentItem.getFirst().innerHTML);
this.handles.removeClass('active');
currentHandle.addClass('active');
}
});
});
</script>