APOCALYPSE Posted June 24, 2007 Report Share Posted June 24, 2007 Sveiki! Priecīgus Jāņus, tiem, kas vēl svinās :) Kods 1 (Tiek izvadīta thumbnail attēlu liste, kurai iekš CSS ir specified lauka izmērs. Respektīvi, ja bilžu skaits neieiet fiksētajā laukumā, parādās Scroll Bar) function showimage(selected){ var images = new Array(); <?PHP print $images; ?> var count = 1; while (count<images.length){ if (count == selected){ document.getElementById('viewer').innerHTML = images[count]; document.getElementById('thumb'+count).style.border = 'solid 1px #FFCC00'; } else { document.getElementById('thumb'+count).style.border = 'solid 1px #CCCCCC'; } count++; } } function createitem(){ var thumbs = '<?PHP print $thumbs; ?>'; document.getElementById('picker_thumbs').innerHTML = thumbs; document.getElementById('picker_thumbs').style.width = '<?PHP print (($count-1)*92); ?>px'; showimage(1); } Kods 2 (Tas, kā reaģē Scroll Bar) var staticscrollspeed=3 var xcurrentscrollspeed=0 var ycurrentscrollspeed=0 function scroll(){ window.scrollBy(xcurrentscrollspeed,ycurrentscrollspeed) } setInterval("scroll()",20) Kā lai apvieno šos divus kodus? Tā, lai "Kods 2" būtu iekš "Koda 1". Link to comment Share on other sites More sharing options...
rpr Posted June 25, 2007 Report Share Posted June 25, 2007 (edited) brrr ko tu tur gribi panaakt? tu shitos domaa kaa pseidokodus vai arii tie ir reaali kodi? un domaa, ka tas viss straadaas? brrr, brr, brrr. 1dienas riitaa shitaadu cieto riekstu ierakstiit. kautko esi mazliet saputrojies meistariibaa. tev ja utur nekad vairaak par vienu bildi neraadiis. brr! Edited June 25, 2007 by rpr Link to comment Share on other sites More sharing options...
v3rb0 Posted June 25, 2007 Report Share Posted June 25, 2007 reku ir tieši tas ko prasīji - kods divi iekš kods viens: http://paste.php.lv/5712 Link to comment Share on other sites More sharing options...
APOCALYPSE Posted June 28, 2007 Author Report Share Posted June 28, 2007 (edited) v3rb0 sataisītais skripts strādā lieliski, scrollis kustās tā kā vajag, Paldies! Bet kaut kā neizdodas vairs piesaistīt šādu lietiņu HTML daļā: <div id="verticalbuttons" style="position: fixed; right:10px; bottom:10px;"> <a onmouseover="ycurrentscrollspeed=-staticscrollspeed" onmouseout="ycurrentscrollspeed=0"><img src="up_arrow.gif" border="0"></a> <a onmouseover="ycurrentscrollspeed=staticscrollspeed" onmouseout="ycurrentscrollspeed=0"><img src="down_arrow.gif" border="0"></a> </div> <div id="leftbutton" style="position: fixed; right:60px; bottom:10px;"> <a onmouseover="xcurrentscrollspeed=-staticscrollspeed" onmouseout="xcurrentscrollspeed=0"><img src="left_arrow.gif" border="0"></a> </div> <div id="rightbutton" style="position: fixed; left: 10px; bottom:10px"> <a onmouseover="xcurrentscrollspeed=staticscrollspeed" onmouseout="xcurrentscrollspeed=0"><img src="right_arrow.gif" border="0"></a> </div> Pliks Kods2 ar <div> (augstāk minētais) strādāja lieliski, bet apvienojumā vairs nestrādā. Visādi izmēģinājos, bet pie dzīvības neizdevās pielaist. Kur varētu būt problēma? Solved! Edited June 30, 2007 by APOCALYPSE Link to comment Share on other sites More sharing options...
Recommended Posts