doumo6356 2013-08-02 18:57
浏览 114
已采纳

json数据库使用while循环轮播类型jquery json获取json的图像设置数据

i have an problem where can i get the jquery code for this? i have a database with image i want a jquery like this to output in my website

i will make a slider that will output like that

it will give me a slide that gives me that output i already have a database and php code that is working

australia

this is an australian government for missing person and our site is like this i want a jquery like this but i don't have the code of the original to do that

missingpersons australia is the link below i can't post here the link because it violate the rules of posting links :D

tried

jquery from search,div,table to output basic jquery don't know advance commands for jquery

tried this link the only problem is the while loop for the data

jquerydata

i edited the carousel the problem is how will i put it?

>     <?php
>     include_once('includes/dbConnect.php');
>     
>     
>     ?>
>     <?php
>     
>     $query=mysql_query("select * from persons order by rand()");
>     
>     while($test = mysql_fetch_array($query))  {
>     
>     }
>     
>     
>      ?>
>     [
>     {
>           "content": "<div class='slide_inner'><a class='photo_link' href='#'><img class='photo' src='banner_bike.jpg' alt='Bike'></a><a
> class='caption' href='#'>Sample Carousel Pic Goes Here And The Best
> Part is that...</a></div>",
>           "content_button": "<div class='thumb'><img src='f2_thumb.jpg' alt='bike is nice'></div><p>Agile Carousel Place
> Holder</p>"
>     },
>     {
>           "content": "<div class='slide_inner'><a class='photo_link' href='#'><img class='photo' src='banner_paint.jpg' alt='Paint'></a><a
> class='caption' href='#'>Sample Carousel Pic Goes Here And The Best
> Part is that...</a></div>",
>           "content_button": "<div class='thumb'><img src='f2_thumb.jpg' alt='bike is nice'></div><p>Agile Carousel Place
> Holder</p>"
>     },
>     {
>           "content": "<div class='slide_inner'><a class='photo_link' href='#'><img class='photo' src='banner_bike.jpg' alt='Bike'></a><a
> class='caption' href='#'>Sample Carousel Pic Goes Here And The Best
> Part is that...</a></div>",
>           "content_button": "<div class='thumb'><img src='f2_thumb.jpg' alt='bike is nice'></div><p>Agile Carousel Place
> Holder</p>"
>     },
>     {
>           "content": "<div class='slide_inner'><a class='photo_link' href='#'><img class='photo' src='banner_paint.jpg' alt='Paint'></a><a
> class='caption' href='#'>Sample Carousel Pic Goes Here And The Best
> Part is that...</a></div>",
>           "content_button": "<div class='thumb'><img src='f2_thumb.jpg' alt='bike is nice'></div><p>Agile Carousel Place
> Holder</p>"
>     },
>     {
>           "content": "<div class='slide_inner'><a class='photo_link' href='#'><img class='photo' src='banner_bike.jpg' alt='Bike'></a><a
> class='caption' href='#'>Sample Carousel Pic Goes Here And The Best
> Part is that...</a></div>",
>           "content_button": "<div class='thumb'><img src='f2_thumb.jpg' alt='bike is nice'></div><p>Agile Carousel Place
> Holder</p>"
>     },
>     {
>           "content": "<div class='slide_inner'><a class='photo_link' href='#'><img class='photo' src='banner_paint.jpg' alt='Paint'></a><a
> class='caption' href='#'>Sample Carousel Pic Goes Here And The Best
> Part is that...</a></div>",
>           "content_button": "<div class='thumb'><img src='f2_thumb.jpg' alt='bike is nice'></div><p>Agile Carousel Place
> Holder</p>"
>     },
>     {
>           "content": "<div class='slide_inner'><a class='photo_link' href='#'><img class='photo' src='Penguins.jpg' alt='Tunnel'></a><a
> class='caption' href='#'>Sample Carousel Pic Goes Here And The Best
> Part is that...</a></div>",
>           "content_button": "<div class='thumb'><img src='f2_thumb.jpg' alt='bike is nice'></div><p>Agile Carousel Place
> Holder</p>"
>     },
>     {
>           "content": "<div class='slide_inner'><a class='photo_link' href='#'><img class='photo' src='Penguins.jpg' alt='Tunnel'></a><a
> class='caption' href='#'>Sample Carousel Pic Goes Here And The Best
> Part is that...</a></div>",
>           "content_button": "<div class='thumb'><img src='f2_thumb.jpg' alt='bike is nice'></div><p>Agile Carousel Place
> Holder</p>"
>     }
>     
>     ]

here's the query of my image and name

>  $query=mysql_query("select * from persons  order by date desc LIMIT
> 0,10 ");
> 
> > <img height=200 width=200 src=' upload/". $test['Image'] ."'/> <a href
> > ='profile.php?PersonID=$id'> ".$test['LastName'].", ". $test['FirstName']." ". $test['MiddleName']."</a>

i'm using this while loop for my search and it calls correctly.

and here's the json code

> <script>
> 
>     $.getJSON("agile_carousel_data.php", function (data) {
> 
>         $("#multiple_slides_visible").agile_carousel({
>             carousel_data: data,
>             carousel_outer_height: 230,
>             carousel_height      : 200,
>             slide_height         : 200,
>             carousel_outer_width : 480,
>             slide_width          : 260,
>             number_slides_visible: 3,
>             transition_time      : 330,
>             control_set_1: "previous_button,next_button",
>             control_set_2: "group_numbered_buttons",
>             persistent_content: "<p class='persistent_content'>Agile Carousel Example: Multiple Slides Visible</p>"
>         });
> 
>     })
> 
>  </script>

this is the content of my $data in data.php

> `<?php include_once('includes/dbConnect.php'); $data = array(); while
> ($test = mysql_fetch_array($query)) { $data[]['content'] = "<div
> class='slide_inner'><a class='photo_link' href='#'><img class='photo'
> src='{$test['image']}' alt='Bike'></a><a class='caption'
> href='#'>Sample Carousel Pic Goes Here And The Best Part is
> that...</a></div>" $data[]['content_button'] = "<div
> class='thumb'><img src='{$test['thumb']}' alt='bike is
> nice'></div><p>Agile Carousel Place Holder</p>" } echo
> json_encode($data); ?> `

the code above won't give me anything i included my database connection but still nothing won't output anything here's the link again link for the original website

  • 写回答

1条回答 默认 最新

  • dongzhugao9929 2013-08-02 19:13
    关注

    Look for a jquery carousel plugin.
    http://vandelaydesign.com/blog/tools/jquery-carousel-plugins/ http://www.webdesigntunes.com/freebies/30-amazing-free-jquery-slider-and-carousel-plugins-of-2013/

    Edit: does this help?

    $data = array();
    $x = 0;
    while ($test = mysql_fetch_array($query)) {
        $data[$x]['content'] = "<div class='slide_inner'><a class='photo_link' href='#'><img class='photo' src='{$test['image']}' alt='Bike'></a><a class='caption' href='#'>Sample Carousel Pic Goes Here And The Best Part is that...</a></div>";
        $data[$x]['content_button'] = "<div class='thumb'><img src='{$test['thumb']}' alt='bike is nice'></div><p>Agile Carousel Place Holder</p>";
    $x++;
    }
    echo json_encode($data);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮