5

DIV コンテンツをスライドさせるために、これら 2 つの jquery プラグイン (扱いにくい/ Coda Slider 3 ) のいずれかを使用しようとしています。プラグイン オブジェクトが作成された後、(js を使用して) 動的コンテンツを設定しようとするまで、すべて正常に動作します。DIV には、プラグインが作成される前に読み込まれたコンテンツのみが表示されます。この目標のためのアイデアやその他の DIV スライダー プラグイン。ありがとう。

ajax は完璧に機能しており、チェック済みです。$('#slider-id').codaSlider(); これは coda スライダーと "awkward"のロード関数です :

$(window).ready(function () {
        $("#showcase").awShowcase(
    {
        content_width: 700,
        fit_to_parent: false,
        auto: false,
        interval: 3000,
        continuous: false,
        loading: true,
        tooltip_width: 200,
        tooltip_icon_width: 32,
        tooltip_icon_height: 32,
        tooltip_offsetx: 18,
        tooltip_offsety: 0,
        arrows: true,
        buttons: true,
        btn_numbers: false,
        keybord_keys: true,
        mousetrace: false, /* Trace x and y coordinates for the mouse */
        pauseonover: true,
        stoponclick: true,
        transition: 'fade', /* hslide/vslide/fade */
        transition_speed: 500,
        transition_delay: 300,
        show_caption: 'onhover', /* onload/onhover/show */
        thumbnails: true,
        thumbnails_position: 'outside-last', /* outside-last/outside-first/inside-last/inside-first */
        thumbnails_direction: 'horizontal', /* vertical/horizontal */
        thumbnails_slidex: 0, /* 0 = auto / 1 = slide one thumbnail / 2 = slide two thumbnails / etc. */
        dynamic_height: true, /* For dynamic height to work in webkit you need to set the width and height of images in the source. Usually works to only set the dimension of the first slide in the showcase. */
        speed_change: false, /* Set to true to prevent users from swithing more then one slide at once. */
        viewline: false /* If set to true content_width, thumbnails, transition and dynamic_height will be disabled. As for dynamic height you need to set the width and height of images in the source. */
    });
    });
4

1 に答える 1

0

Kevin Batdorf は、Ajax とコールバックをサポートするLiquid Sliderと呼ばれるものでCoda Sliderを改善しました。

ここでチュートリアルを読んでください

そして、それはgithubで入手できます。

于 2013-01-27T23:58:50.013 に答える