![]() |
![]() ![]() |
![]() |
![]()
Post
#1
|
|
Grupa: Zarejestrowani Postów: 64 Pomógł: 0 Dołączył: 1.02.2010 Ostrzeżenie: (0%) ![]() ![]() |
Witam
Poszukuję rozwiązania jak w prosty sposób zrobić "rotator" w x/html Chciałbym aby co 10 sekund wyświetlała się inna grafika BEZ ponownego wczytywania całej strony |
|
|
![]()
Post
#2
|
|
Grupa: Nieautoryzowani Postów: 2 249 Pomógł: 305 Dołączył: 2.10.2006 Ostrzeżenie: (0%) ![]() ![]() |
Słabo "poszukujesz" Googe.pl => javascript slider
|
|
|
![]()
Post
#3
|
|
Grupa: Zarejestrowani Postów: 1 135 Pomógł: 158 Dołączył: 19.03.2009 Skąd: Toruń Ostrzeżenie: (0%) ![]() ![]() |
Musisz dodać odrobinkę js Link
|
|
|
![]()
Post
#4
|
|
Grupa: Zarejestrowani Postów: 64 Pomógł: 0 Dołączył: 1.02.2010 Ostrzeżenie: (0%) ![]() ![]() |
A może taki skrypt ktoś ma:
(IMG:http://iv.pl/images/23305281558575090270.png) |
|
|
![]()
Post
#5
|
|
Grupa: Nieautoryzowani Postów: 2 249 Pomógł: 305 Dołączył: 2.10.2006 Ostrzeżenie: (0%) ![]() ![]() |
A może taki skrypt ktoś ma: (IMG:http://iv.pl/images/23305281558575090270.png) Google.pl ma. Jeszcze raz: javascript slider. Poszukaj sobie. |
|
|
![]()
Post
#6
|
|
Grupa: Zarejestrowani Postów: 1 135 Pomógł: 158 Dołączył: 19.03.2009 Skąd: Toruń Ostrzeżenie: (0%) ![]() ![]() |
Ciężko pokazać wszystkie sposoby wyświetlania tego co oczekujesz zastosuj się do porad użytkownika pedro84
|
|
|
![]()
Post
#7
|
|
Grupa: Zarejestrowani Postów: 64 Pomógł: 0 Dołączył: 1.02.2010 Ostrzeżenie: (0%) ![]() ![]() |
Szukałem, ale takiego nie mogę znaleźć
|
|
|
![]()
Post
#8
|
|
Grupa: Nieautoryzowani Postów: 2 249 Pomógł: 305 Dołączył: 2.10.2006 Ostrzeżenie: (0%) ![]() ![]() |
|
|
|
![]()
Post
#9
|
|
Grupa: Zarejestrowani Postów: 1 135 Pomógł: 158 Dołączył: 19.03.2009 Skąd: Toruń Ostrzeżenie: (0%) ![]() ![]() |
|
|
|
![]()
Post
#10
|
|
Grupa: Zarejestrowani Postów: 82 Pomógł: 0 Dołączył: 14.09.2008 Skąd: Polska Ostrzeżenie: (0%) ![]() ![]() |
Szukałem, ale takiego nie mogę znaleźć http://css-tricks.com/javascript-page-slider-roundup/ znalezione pod hasłem "Javascript Slider" na pierwszej stronie... Ten post edytował Drav 3.06.2010, 20:55:13 |
|
|
![]()
Post
#11
|
|
Grupa: Zarejestrowani Postów: 64 Pomógł: 0 Dołączył: 1.02.2010 Ostrzeżenie: (0%) ![]() ![]() |
No dobra znalazł ładny skrypcik (IMG:style_emoticons/default/smile.gif) Tylko, że gdy się przesuwają w nim bannery, to jak dojdzie do ostatniego to się zatrzymuje zamiast od nowa pokazywać
Tutaj kod pliku html Cytat <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <title>DD Carusel. Test whis display:none;</title> <script type="text/javascript" src="js/jquery.min.js"></script> <script type="text/javascript" src="js/stepcarousel.js"></script> <style type="text/css"> .stepcarousel{ position: relative; /*leave this value alone*/ border: 1px solid black; overflow: scroll; /*leave this value alone*/ width: 468px; /*Width of Carousel Viewer itself*/ height: 60px; /*Height should enough to fit largest content's height*/ } .stepcarousel .belt{ position: absolute; /*leave this value alone*/ left: 0; top: 0; } .stepcarousel .panel{ float: left; /*leave this value alone*/ overflow: hidden; /*clip content that go outside dimensions of holding panel DIV*/ width: 850px; /*Width of each panel holding each content. If removed, widths should be individually defined on each content DIV then. */ } </style> <script type="text/javascript"> stepcarousel.setup({ galleryid: 'mygallery', //id of carousel DIV beltclass: 'belt', //class of inner "belt" DIV containing all the panel DIVs panelclass: 'panel', //class of panel DIVs each holding content autostep: {enable:true , moveby:1, pause:3000}, panelbehavior: {speed:500, wraparound:false, persist:false}, defaultbuttons: {enable: false, moveby: 1, leftnav: ['img/317e0s5.gif', -5, 80], rightnav: ['img/33o7di8.gif', -20, 80]}, statusvars: ['statusA', 'statusB', 'statusC'], //register 3 variables that contain current panel (start), current panel (last), and total panels contenttype: ['inline'] //content setting ['inline'] or ['ajax', 'path_to_external_file'] }) </script> </head> <body bgcolor="#FFFFFF"> <div id="mygallery" class="stepcarousel"> <div class="belt"> <div class="panel"> <img src="img/1.gif" alt="" width="468" height="60" /> </div> <div class="panel"> <img src="img/2.gif" alt="" width="468" height="60" /> </div> <div class="panel"> <img src="img/3.gif" alt="" width="468" height="60" /> </div> <div class="panel"> <img src="img/4.gif" alt="" width="468" height="60" /> </div> <div class="panel"> <img src="img/5.png" alt="" width="468" height="60" /> </div> </div> </div> <p id="mygallery-paginate" style="width: 250px; text-align:center"> <img src="img/opencircle.png" data-over="img/graycircle.png" data-select="img/closedcircle.png" data-moveby="1" /> </p> <p> <a href="java script:stepcarousel.stepBy('mygallery', -1)">Back 1 Panel</a> <a href="java script:stepcarousel.stepBy('mygallery', 1)" style="margin-left: 80px">Forward 1 Panel</a> <br /> <a href="java script:stepcarousel.stepTo('mygallery', 1)">To 1st Panel</a> <a href="java script:stepcarousel.stepBy('mygallery', 2)" style="margin-left: 80px">Forward 2 Panels</a> </p> </body> </html> |
|
|
![]() ![]() |
![]() |
Aktualny czas: 3.10.2025 - 01:09 |