Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a slideshow of portfolio project images playing in a loop on my site's homepage. I also have a list of links with names of all the projects. Is it possible to change text color in a specific sequence such that when a project image is displayed, the project name/link becomes highlighted?
If so, does it make sense to animate both the images and the text together? Or have them as two separate functions, and just time it correctly so they correspond?

Thanks!

share|improve this question
is my answer what you were looking for? – Cecil Theodore Feb 4 '12 at 15:43

2 Answers

up vote 0 down vote accepted

If I'm understanding you correctly, you have a list of images that are rotating in a slideshow, you also have a list of titles/links that present each one of the items in the slideshow.

A good way to highlight the the correct title when the corresponding slideshow image is active , is to use the slideshow images ids

example

Below is your slideshow list of images. Each li has a unique id which we will use to link to the corresponding titles.

<ul id="slideshow">
 <li id="project-1"><img src="image-1.jpg" /></li>
 <li id="project-2"><img src="image-2.jpg" /></li>
 <li id="project-3"><img src="image-3.jpg" /></li>
</ul>

Below is the list of titles.

<ul id="titles">
 <li class="project-1"><a href="/">Project 1</a></li>
 <li class="project-2"><a href="/">Project 2</a></li>
 <li class="project-3"><a href="/">Project 3</a></li>
</ul>

Now you have the basic mark up, you write a function that checks when a slideshow image is being displayed, it then gets the id of that image li, and checks whether any of the lis within the title's ul list has that id as it's class.

If it does, it adds a class to it that changes its colour.

Something like this:

if($('ul#slideshow li').hasClass('active'){

    var id = this.id;

    $('ul#titles').find('li.' + id).addClass('highlight');

}):

Obviously I am assuming that the current slideshow image/li has a class of active, but this wouldn't be hard to do if it didn't.

Also, the class of highlight will contain css properties of a text color.

Sorry if im way off the mark!

share|improve this answer
yes, that's perfect, thank you! – Kudra Ilse Feb 4 '12 at 16:08

It may be possible by switch case in

jquery.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.