jquery - Bootstrap 3.0 Carousel - not working -


so want implement above carousel page , seem have multiple problems it. page in question is: http://wasup.si/test-bid1

as see looks doesn't start...no console errors whatsoever. can me out here i'm doing wrong?

<!-- carousel                 ================================================== -->                 <div id="mycarousel" class="carousel slide" data-ride="carousel">                   <!-- indicators -->                   <ol class="carousel-indicators">                     <li data-target="#mycarousel" data-slide-to="0" class="active"></li>                     <li data-target="#mycarousel" data-slide-to="1"></li>                     <li data-target="#mycarousel" data-slide-to="2"></li>                   </ol>                   <div class="carousel-inner">                     <?php                             $query = "select * bcuphoto id_bcu='".$bid."' , published=1";                             dbopen2($query);                             $i=1;                             while (dbgetrow2()) {                                 $image = image::getinstance();                                 $pic_big = $image->img(row2('source'),"media/uploads/bcuphoto/",1170,600,false);                                 unset($image);                     ?>                     <div class="item<?php if ($i== 1) print " active"?>">                       <img src="<?php print $pic_big?>" class="img-responsive" border="0" title="<?php print row2('title')." - ".$i?>">                     </div>                     <?php                                 $i++;                             }                             dbclose2();                     ?>                   </div>                   <a class="left carousel-control" href="#mycarousel" data-slide="prev"><span class="glyphicon glyphicon-chevron-left"></span></a>                   <a class="right carousel-control" href="#mycarousel" data-slide="next"><span class="glyphicon glyphicon-chevron-right"></span></a>                 </div><!-- /.carousel --> 

this code used carousel...

css:

#mycarousel {     height:300px; //set height     width:100%;   //set width accordingly } 

that'll make work. otherwise, there no problem in code.


Comments

Popular posts from this blog

android - Get AccessToken using signpost OAuth without opening a browser (Two legged Oauth) -

org.mockito.exceptions.misusing.InvalidUseOfMatchersException: mockito -

google shop client API returns 400 bad request error while adding an item -