你是指的这样的效果吧 http://one.cn.yahoo.com/view?p=%E5%85%89%E5%BD%A9%E7%85%A7%E4%BA%BA&v=image&b=4&x=all&pid=hp

解决方案 »

  1.   

    连续滚动!可用JS控制div的margin值来实现。例如
    某对象(如DIV)的初始值:
    margin-left=0,margin-right=100当向左移动时
    {
    *.style.marginLeft=-1;
    *.style.marginRight=1;
    }当向右移动时
    {
    *.style.marginLeft=1;
    *.style.marginRight=-1;
    }偶用过此方法!
      

  2.   

    按照i降序显示
    i = 1;
    select top 10
    i+= 1
    while i mod 10 = 0
    select top 10 .. where id > i order by i desc
    loop只是思路,你想要随机,就多写几种规则,但也只是在这几种规则中随机选一个,因为你不想一次性读完500张图片,只能保留排序规则,等到你想读下一批图片的时候还得用这个规则.