senters Posted September 4, 2010 Report Share Posted September 4, 2010 (edited) Man lapā atrodas attēlu sliders (jquery). Attēli tiek mainīti ar 5 sec intervālu. Vajag lai reizē ar attēliem arī mainītos šinī div'ā teksts. // (JQUERY) CYCLE LITE $(document).ready(function() { $('#SlideShow').cycle ({ prev: '#prev', next: '#next', timeout: 5000 // 0 - stopped }); }); [..] <div id="SlideText"> Šeit katram attēlam atbilstošs savs unikāls teksts </div> <div id="SlideShow"> <img src="Images/login_ico_1.png" /> <img src="Images/login_ico_2.png" /> <img src="Images/login_ico_3.png" /> </div> Pavisam labs risinājums būtu ja izdotos šo tekstu (<div id="SlideText"> Šeit katram attēlam atbilstošs savs unikāls teksts </div>) dabūt iekš SlideShow div'a. (Vizualizēta šī varianta ideja) Edited September 4, 2010 by senters Link to comment Share on other sites More sharing options...
0 Kemito Posted September 5, 2010 Report Share Posted September 5, 2010 Es būtu muļķis, bet es taisītu tādā veidā. Nokopētu šo JS funkcijas daļu, attiecīgi nomainītu DIV name vārdu un viss ! Tekstu pielāgotu pēc vaidzības. Link to comment Share on other sites More sharing options...
0 senters Posted September 5, 2010 Author Report Share Posted September 5, 2010 (edited) Šādi es pats izdarīju, bet iespējams, ka tas darbojas tikai uz <img>, kas tajā divā tiek sakrauti viens pēc otra (sk.zemāk). Kā ar tekstu panākt līdzīgu efektu, nezinu. Šāds kods: // (JQUERY) CYCLE LITE IMAGE $(document).ready(function() { $('#SlideShow').cycle ({ prev: '#prev', next: '#next', timeout: 5000 // 0 - stopped }); }); // (JQUERY) CYCLE LITE TEXT $(document).ready(function() { $('#SlideText').cycle ({ prev: '#prev', next: '#next', timeout: 5000 // 0 - stopped }); }); <div id="SlideText"> teksts teksts teksts </div> [..] <div id="SlideShow"> <img src="Images/login_ico_1.png" title="asd" /> <img src="Images/login_ico_2.png" title="aasxaass" /> </div> Edited September 5, 2010 by senters Link to comment Share on other sites More sharing options...
0 euphoric Posted September 5, 2010 Report Share Posted September 5, 2010 (edited) Šitā : <div id="SlideText"> <div> 1Text,Text,Text </div> <div> 2Text,Text,Text </div> <div> 3Text,Text,Text </div> </div> Edited September 5, 2010 by euphoric Link to comment Share on other sites More sharing options...
0 senters Posted September 5, 2010 Author Report Share Posted September 5, 2010 Pa pirmo! Kā man pašam neienāca prātā šādi pamēģināt Link to comment Share on other sites More sharing options...
Question
senters
Man lapā atrodas attēlu sliders (jquery). Attēli tiek mainīti ar 5 sec intervālu. Vajag lai reizē ar attēliem arī mainītos šinī div'ā teksts.
Pavisam labs risinājums būtu ja izdotos šo tekstu (<div id="SlideText"> Šeit katram attēlam atbilstošs savs unikāls teksts </div>) dabūt iekš SlideShow div'a. (Vizualizēta šī varianta ideja)
Edited by sentersLink to comment
Share on other sites
4 answers to this question
Recommended Posts