1

jquery スライド タブを使用しています。タブ コンテナーは非アクティブなコンテンツの高さに調整されますが、唯一の問題は、autoHeight jquery 関数がアクティブな拡張コンテンツに調整されないことです。このプラグインを試しましたが、うまくいきませんでした。他のプラグインの提案はありますか? ここに私のJSFIDDLEがあります。

ありがとうございました。

私のサイズ変更方法がうまくいきません:

<script>

    $(document).ready(function() {

        $('div#st_horizontal').slideTabs({
            // Options              
            contentAnim: 'slideH',
            autoHeight: true,
            contentAnimTime: 600,
            contentEasing: 'easeInOutExpo',
            tabsAnimTime: 300
        });

        var height = 50 // Set to the height you want
        $('.st_view').css('height', height+'px')

    });​

    </script>
4

1 に答える 1

0

これを試してください: jquery resize プラグインを使用:こちら

$('.st_tab_view').resize(function() {
        var $this = $(this);
        $this.closest('.st_view').css('height', $this.height());
    });
于 2012-06-30T18:47:47.303 に答える