Php Bilenlerden Yardım
6
●171
- 18-02-2018, 19:44:26kodlar bunlar bunun slider eklemek istiyorum kısaca öyle söyleyim olur mu ?crooper adlı üyeden alıntı: mesajı görüntüle
<div id="my_carouselwidget-3">
<!-- Elastislide Carousel -->
<div id="carousel">
<div class="viewport">
<ul class="overview">
<?php
include ("ayar.php");
$sorgu = "SELECT * FROM tarif WHERE onay='1' order by id desc limit 10";
$yazdir_sorgu = mysql_query( $sorgu, $mysqlbaglantisi) or die(mysql_error() );
while ($yazdir = mysql_fetch_array($yazdir_sorgu)){
?>
<li>
<figure><a href="tarif_goster.php?id=<?php echo $yazdir['id']; ?>"><img src="yonetici/<?php echo $yazdir['resim']; ?>" width="220" height="185" alt="<?php echo $yazdir['resim_alt']; ?>"></a></figure>
<h4><a href="tarif_goster.php?id=<?php echo $yazdir['id']; ?>"><?php echo $yazdir['baslik']; ?></a></h4>
<a href="tarif_goster.php?id=<?php echo $yazdir['id']; ?>" class="button">Tarifini Oku</a> </li>
<?php } ?>
</ul>
</div>
<a href="#" class="buttons next">next</a> <a href="#" class="buttons prev">prev</a> </div>
<script type="text/javascript">
jQuery(function(){
jQuery('#carousel').tinycarousel({
start: 1, // where should the carousel start?
display: 1, // how many blocks do you want to move at 1 time?
axis: 'x', // vertical or horizontal scroller? ( x || y ).
controls: true, // show left and right navigation buttons.
pager: false, // is there a page number navigation present?
interval: false, // move to another block on intervals.
intervaltime: 10000, // interval time in milliseconds.
rewind: false, // If interval is true and rewind is true it will play in reverse if the last slide is reached.
animation: true, // false is instant, true is animate.
duration: 500, // how fast must the animation move in ms?
callback: null // function that executes after every move.
});
});
</script>
<!-- End Elastislide Carousel -->
</div> - 18-02-2018, 19:52:37bu script hazır bulup kurdum o yüzden ne demek istedini anlamadım açıkcasıcrooper adlı üyeden alıntı: mesajı görüntüle
yardımlarınız için çok teşekkür ederim sorunu çözdüm saolun
gönderdiğin kodlar sitendeki kodlar ise, kodlara bakarsan interval diye bir özellik var. onu true yaparsan slider otomatik dönecektir.