0

スライドショーにナビゲーションを追加したいのですが、ドキュメントで説明されているようにslide_linksを機能させることができません。Supersizedサイトのドキュメントでは、オプションはfalse、number、name、およびemptyです。デモファイル内のコメントでは、オプションはfalse、num、name、およびblankです。数と数はまったく何もしていないようです。どうすればこれをうまく機能させることができますか?

It appears, according to the documentation, that slide_links should generate a list of links directly to the slides. It does not work as described. "Number" seems to be the option I am looking for, so I can create other links with those numbers and link directly to slides (say slide 5 of 10).

4

1 に答える 1

2

これがあなたが必要とするものであることを願っています。このコードを試してみてください。うまくいくはずです。

jQuery(function($){

    $.supersized({  

    // Functionality
    slide_interval    :   3000,
    transition        :   1, 
    transition_speed  :   700, 

    // Components                           
    slide_links     :'blank',
    slides          :[ {image : '...'}] //put links for each slide

    thumb_links     :   1,          // Individual thumb links for each slide
    thumbnail_navigation    :   0,          // Thumbnail navigation


    });
});
于 2012-10-17T17:36:09.973 に答える