Forum FAQForum FAQSearchSearch MemberlistMemberlist Forum ignore listForum ignore list RegisterRegister ProfileProfile Log in to check your private messagesLog in to check your private messages Log inLog in
Neznam kako bi trazio pa trebam pomoc..

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    mi3dot.org Forum Index -> Client-side
View previous topic :: View next topic  
Author Message
dnk2001



Joined: 14 Jun 2005
Posts: 81
Location: Zagreb

PostPosted: 02.06.2008 13:13    Post subject: Neznam kako bi trazio pa trebam pomoc.. Add user to your forum ignore list Reply with quote

ovako zanima me dali postoji neka skripta koja radi scroll lijevo desno kao što je na indexu kad imaju galeriju ispod glavne slike slike u vijesti.

e sad ja bi unutar toga stavio tekst, dakle vijesti.. dali je to ikako izvedivo?
Back to top
View user's profile Send private message Send e-mail Visit poster's website
dnk2001



Joined: 14 Jun 2005
Posts: 81
Location: Zagreb

PostPosted: 03.06.2008 13:55    Post subject: Add user to your forum ignore list Reply with quote

ako ima i nešt slično bio bih zahvalan.

dakle ono što sam ja mislio je. da kad kliknem na link/image da mi se za recimo 300 px pomjeri u lijevo ili desno.. znam da to ide sa javom, ali neznam javu pa neznam ni sam napraviti.
Back to top
View user's profile Send private message Send e-mail Visit poster's website
darkqueliss



Joined: 27 May 2008
Posts: 1058

PostPosted: 03.06.2008 14:08    Post subject: Add user to your forum ignore list Reply with quote

probaj sa flashom Smile preko xml-a...
Back to top
View user's profile Send private message
dnk2001



Joined: 14 Jun 2005
Posts: 81
Location: Zagreb

PostPosted: 03.06.2008 14:20    Post subject: Add user to your forum ignore list Reply with quote

po moju žalost neznam ništa od tih jezika.. al ok, ak neuspijem ništa naći stavit cu nek bude obican scroll ali sam htio da to mal ljepše izgleda.
Back to top
View user's profile Send private message Send e-mail Visit poster's website
darkqueliss



Joined: 27 May 2008
Posts: 1058

PostPosted: 03.06.2008 14:52    Post subject: Add user to your forum ignore list Reply with quote

dnk2001 wrote:
po moju žalost neznam ništa od tih jezika.. al ok, ak neuspijem ništa naći stavit cu nek bude obican scroll ali sam htio da to mal ljepše izgleda.


a neznam, sigurno imaš nešto... ima tih .JS tona... malo surfaj, http://hotscripts.com, http://home.cogeco.ca/~ve3ll/jstutor0.htm, http://javascript.internet.com/, http://www.javascriptkit.com/, http://java-scripts.net/, http://www.google.com ...
Back to top
View user's profile Send private message
dnk2001



Joined: 14 Jun 2005
Posts: 81
Location: Zagreb

PostPosted: 03.06.2008 14:59    Post subject: Add user to your forum ignore list Reply with quote

problem je što neznam kak bi to tražio.. ak tražim kao scroll onda mi izbaci sve one obične stvari vezane uz scroll.

al oke.. hvala ti, pogledat ću ove neke od ovih linkova.. neke sam već pogledao..
Back to top
View user's profile Send private message Send e-mail Visit poster's website
fun.ky



Joined: 05 Jan 2006
Posts: 365
Location: Mostar

PostPosted: 03.06.2008 15:18    Post subject: Add user to your forum ignore list Reply with quote

probaj sa javascript horizontal scoller

_________________
There is no style definition for good music!
Back to top
View user's profile Send private message Visit poster's website Twitter profile
strija



Joined: 14 Sep 2003
Posts: 473
Location: Čakovec

PostPosted: 03.06.2008 16:36    Post subject: Add user to your forum ignore list Reply with quote

http://www.gmarwaha.com/jquery/jcarousellite/index.php

btw. java i javascript nije isto Smile

_________________
We can exist in ambiguity, but it means the deepest loneliness. | creolab.hr | thefarewellreason.com
Back to top
View user's profile Send private message Visit poster's website
dnk2001



Joined: 14 Jun 2005
Posts: 81
Location: Zagreb

PostPosted: 03.06.2008 19:10    Post subject: Add user to your forum ignore list Reply with quote

eee. to.. hvala svima.. Very Happy

@ strija - znao sam da će biti jedan od takvih odgovora.. to znam, al sam kasno skužio šta sam napisao a nije mi se dalo ispravljat.. uglavnom, hvala!!
Back to top
View user's profile Send private message Send e-mail Visit poster's website
dnk2001



Joined: 14 Jun 2005
Posts: 81
Location: Zagreb

PostPosted: 04.06.2008 20:26    Post subject: Add user to your forum ignore list Reply with quote

strija wrote:
http://www.gmarwaha.com/jquery/jcarousellite/index.php

btw. java i javascript nije isto Smile


e sad pitanje o ovome...

recimo imam DIV u koji bi to htio staviti.. kako.. dakle gdje što u dokumentu treba ići?
Back to top
View user's profile Send private message Send e-mail Visit poster's website
strija



Joined: 14 Sep 2003
Posts: 473
Location: Čakovec

PostPosted: 04.06.2008 21:11    Post subject: Add user to your forum ignore list Reply with quote

Pa ovdje ti je sve prikazano: http://www.gmarwaha.com/jquery/jcarousellite/index.php?#install

I pogledaj malo pod demo za malo kompliciranije primjere.

_________________
We can exist in ambiguity, but it means the deepest loneliness. | creolab.hr | thefarewellreason.com
Back to top
View user's profile Send private message Visit poster's website
dnk2001



Joined: 14 Jun 2005
Posts: 81
Location: Zagreb

PostPosted: 04.06.2008 21:35    Post subject: Add user to your forum ignore list Reply with quote

ovo sam skužio al nekontam što s ovim:

Code:
$(function() {
    $(".anyClass").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev"
    });
});


to je za button-e al neznam gdje da stavim.

a drugi problem mi je što mi ovu listu koju napravim nestavi vodoravno nego okomito i ništ nedobijem.
Back to top
View user's profile Send private message Send e-mail Visit poster's website
strija



Joined: 14 Sep 2003
Posts: 473
Location: Čakovec

PostPosted: 04.06.2008 21:44    Post subject: Add user to your forum ignore list Reply with quote

To stavis u head stranice, u <script> tag. Ovako:

Code:
<script type="text/javascript" charset="utf-8">
//<![CDATA[
$(function() {
    $(".anyClass").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev"
    });
});
//]]>
</script>

_________________
We can exist in ambiguity, but it means the deepest loneliness. | creolab.hr | thefarewellreason.com
Back to top
View user's profile Send private message Visit poster's website
darkqueliss



Joined: 27 May 2008
Posts: 1058

PostPosted: 04.06.2008 22:04    Post subject: Add user to your forum ignore list Reply with quote

alo. imam nesto za tebe...

http://www.dynamicdrive.com/dynamicindex17/featuredcontentglider.htm
Back to top
View user's profile Send private message
dnk2001



Joined: 14 Jun 2005
Posts: 81
Location: Zagreb

PostPosted: 05.06.2008 14:29    Post subject: Add user to your forum ignore list Reply with quote

e hvala jasi.. to mi super odgovara.. e sad ak može još mala pomoć vezano za to.

tu se scrolla samo jedna vijest. ja sam htio da mi ide 3 po 3 vijesti.

svaki taj div ima class="glidecontent", pokušao sam napraviti da veličina tog diva bude 960px a unutar njega da bude recimo 3 diva od 305px pa da onda ide 3 po 3. dobijem da mi se prikažu sva 3 diva preko cijelog glidecontent od 960px.

novi sam u CSS pa mi to mal neide.. pokušao sam napravit i class za te male div-ove unutar glidecontent class-a (neznam dali je to moguće, al sam negdje pročitao da se tak nešto može) kad to napravim tada mi ništa ne prikaže.. neznam dali to ima veze i sa onim file-om gdje su funkcije..

eto.. blizu sam cilja sam ako mi možete još to pomoći..

hvala Very Happy
Back to top
View user's profile Send private message Send e-mail Visit poster's website
strija



Joined: 14 Sep 2003
Posts: 473
Location: Čakovec

PostPosted: 05.06.2008 14:43    Post subject: Add user to your forum ignore list Reply with quote

Ne kuzim u cemu ti je problem, ovo j JQueryem ne moze biti jednostavnije.
Napravio sam ti primjer ovdje: http://test.creolab.hr/jcarousel/

A evo ti i cijeli kod:
Code:
<!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" xml:lang="en" lang="en">
<head>
   <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
   <title>My carousel</title>
   <script type="text/javascript" src="js/jquery.js" charset="utf-8"></script>
   <script type="text/javascript" src="js/jcarousellite.js" charset="utf-8"></script>
   <style type="text/css" media="all">
   ul li { margin: 0 5px; }
   </style>
   <script type="text/javascript" charset="utf-8">
   //<![CDATA[
   $(function() {
      $("#my-carousel").jCarouselLite({
           btnNext: ".next",
           btnPrev: ".prev"
       });
   });
   //]]>
   </script>
</head>
<body>
   
<div id="my-carousel">
   <ul>
        <li><img src="images/photo_5_9.jpg" alt="" width="305" height="450" ></li>
        <li><img src="images/photo_5_9.jpg" alt="" width="305" height="450" ></li>
        <li><img src="images/photo_5_9.jpg" alt="" width="305" height="450" ></li>
        <li><img src="images/photo_5_9.jpg" alt="" width="305" height="450" ></li>
        <li><img src="images/photo_5_9.jpg" alt="" width="305" height="450" ></li>
        <li><img src="images/photo_5_9.jpg" alt="" width="305" height="450" ></li>
        <li><img src="images/photo_5_9.jpg" alt="" width="305" height="450" ></li>
        <li><img src="images/photo_5_9.jpg" alt="" width="305" height="450" ></li>
        <li><img src="images/photo_5_9.jpg" alt="" width="305" height="450" ></li>
        <li><img src="images/photo_5_9.jpg" alt="" width="305" height="450" ></li>
        <li><img src="images/photo_5_9.jpg" alt="" width="305" height="450" ></li>
    </ul>
</div><!-- #my-carousel -->

<button class="prev"><<</button>
<button class="next">>></button>
   
   
</body>
</html>

_________________
We can exist in ambiguity, but it means the deepest loneliness. | creolab.hr | thefarewellreason.com
Back to top
View user's profile Send private message Visit poster's website
dnk2001



Joined: 14 Jun 2005
Posts: 81
Location: Zagreb

PostPosted: 05.06.2008 16:39    Post subject: Add user to your forum ignore list Reply with quote

e hvala.. probat ću pa javim..

kod ovog primjera što je jasi dao, super je što ima mogućnost i da sam scrolla a može se i ručno..
Back to top
View user's profile Send private message Send e-mail Visit poster's website
strija



Joined: 14 Sep 2003
Posts: 473
Location: Čakovec

PostPosted: 05.06.2008 16:43    Post subject: Add user to your forum ignore list Reply with quote

dnk2001 wrote:
e hvala.. probat ću pa javim..

kod ovog primjera što je jasi dao, super je što ima mogućnost i da sam scrolla a može se i ručno..


Nije ni to problem s ovim carouselom Smile
Code:
$("#my-carousel").jCarouselLite({
    btnNext: ".next",
    btnPrev: ".prev",
    auto: 800,
    speed: 500
});

Uglavnom bi trebalo malo prouciti primjere na sajtu pa da vidis da je puno toga moguce. I sto je najbolje plugin je samo 2 KB Smile

_________________
We can exist in ambiguity, but it means the deepest loneliness. | creolab.hr | thefarewellreason.com
Back to top
View user's profile Send private message Visit poster's website
dnk2001



Joined: 14 Jun 2005
Posts: 81
Location: Zagreb

PostPosted: 05.06.2008 18:18    Post subject: Add user to your forum ignore list Reply with quote

jeeeee... radiii..

hvala obojici za trudu.. Dancing Applause
Back to top
View user's profile Send private message Send e-mail Visit poster's website
darkqueliss



Joined: 27 May 2008
Posts: 1058

PostPosted: 05.06.2008 19:45    Post subject: Add user to your forum ignore list Reply with quote

dnk2001 wrote:
jeeeee... radiii..

hvala obojici za trudu.. Dancing Applause


"na trudu"

np Smile
Back to top
View user's profile Send private message
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    mi3dot.org Forum Index -> Client-side All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group