Hi,

Please view the following link:

http://travel.yahoo.com/p-travelguide-191501619-beijing_vacations-i;_ylt=AiZdwxCyxFHHjdvlVEe4GeQyFWoL

Here can any one please guide me that how the pictures are changing in the vertical are at right side?

Thanks

Recommended Answers

All 4 Replies

JavaScript image carousel.

Perhaps ajax.
I checked the source code and appears that at least javascript to some degree must have been used since there is no hyperlink but instead an oop reference with javascript. Then and although I haven't dug in deep enough to confirm this but it appears there is some server to client communication that updates the div fields. That's about all that I have found so far.

Thanks for your reply.

I am trying to use JavaScript image carousel. Please view this link:

http://www.ajaxdaddy.com/demo-ajax-carousel.html

It uses unordered list. Here the lists are static but I am trying to make it dynamic as:

<div id="prev-arrow-container"><img alt="Left3-disabled" id="prev-arrow" src="images/left3-disabled.gif?1163492051" /></div>
<div class="carousel-component" id="html-carousel"><div class="carousel-clip-region">

<ul>
<? 
$count = 0;
while ($count <= $total)
{?>
	
<li>
<img src="images/journeys/gallery/<? echo $arr[$count][0]; ?>" class="thumb" />
</li>
<? 
$count++;
}
?>
</ul>
</div></div>

Here the list's are created dynamically to place some images in those list's as in that code, but it is not working. Please guide.

Perhaps ajax.
I checked the source code and appears that at least javascript to some degree must have been used since there is no hyperlink but instead an oop reference with javascript. Then and although I haven't dug in deep enough to confirm this but it appears there is some server to client communication that updates the div fields. That's about all that I have found so far.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.