2 Replies - 1270 Views - Last Post: 16 February 2012 - 05:48 PM

#1 rbflowers   User is offline

  • New D.I.C Head

Reputation: 2
  • View blog
  • Posts: 48
  • Joined: 10-February 12

Slide show with thumbnails (EX www.goal.com headlines)

Posted 15 February 2012 - 01:17 AM

My site ideally would do the same thing as www.goal.com 's home page in regards to their headlines.

The main stories load in slide show and the thumbnail on the left associated with the displayed article now has a border. If you click on one of these thumbnails, the show stops, the new article pops up and a border for that thumbnail also shows up.

I've gotten my slideshow to slide, stop when someone clicks on a thumbnail, display the clicked article and have a border show up after a click, but I can't figure out how to make the thumbnail borders change with the slides.

Any suggestions?

Is This A Good Question/Topic? 0
  • +

Replies To: Slide show with thumbnails (EX www.goal.com headlines)

#2 JackOfAllTrades   User is offline

  • Saucy!
  • member icon

Reputation: 6260
  • View blog
  • Posts: 24,030
  • Joined: 23-August 08

Re: Slide show with thumbnails (EX www.goal.com headlines)

Posted 15 February 2012 - 04:51 AM

Change line 42 of your script to
alert('How can we possibly help without seeing your code?');

Was This Post Helpful? 1
  • +
  • -

#3 rbflowers   User is offline

  • New D.I.C Head

Reputation: 2
  • View blog
  • Posts: 48
  • Joined: 10-February 12

Re: Slide show with thumbnails (EX www.goal.com headlines)

Posted 16 February 2012 - 05:48 PM

thought i had it attached.

$.fx.speeds.slower = 1000;

//left middle is pictures
$(document).ready(function() {	
	$('#left-middle').cycle({
		fx: 'fade',
		startingSlide: 0,
		speed:  'slower'
	});

//right middle is text about pictures
    $('#right-middle').cycle({
		fx: 'fade',
		startingSlide: 0,
		speed:  'slower'
	});
});

//thumbnails 1-5
$(document).ready(function(){
   $("#bmone").click(function(){
		$('#left-middle').cycle(0); 
		$('#right-middle').cycle(0); 
		$('#left-middle').cycle('pause'); 
		$('#right-middle').cycle('pause');
		return false; 
  });
  $("#bmtwo").click(function(){
		$('#left-middle').cycle(1); 
		$('#right-middle').cycle(1); 
		$('#left-middle').cycle('pause'); 
		$('#right-middle').cycle('pause'); 
		return false; 
  });
  $("#bmthree").click(function(){
		$('#left-middle').cycle(2); 
		$('#right-middle').cycle(2); 
		$('#left-middle').cycle('pause'); 
		$('#right-middle').cycle('pause'); 
		return false; 
  });
  $("#bmfour").click(function(){
		$('#left-middle').cycle(3); 
		$('#right-middle').cycle(3); 
		$('#left-middle').cycle('pause'); 
		$('#right-middle').cycle('pause'); 
		return false; 
  });
  $("#bmfive").click(function(){
		$('#left-middle').cycle(4); 
		$('#right-middle').cycle(4); 
		$('#left-middle').cycle('pause'); 
		$('#right-middle').cycle('pause'); 
		return false; 
  });
});



Was This Post Helpful? 0
  • +
  • -

Page 1 of 1