2

javascript ギャラリーを wordpress で実行しようとしていますが、ギャラリーを実行するために .ready(function) に何を入れればよいかわかりません。jQuery 関数の元のページはこちら: http://manos.malihu.gr/simple-jquery-fullscreen-image-gallery/2

JavaScriptファイル全体を実行する関数を実行する必要があると思いますが、その関数が何であるかはよくわかりません。初心者で申し訳ありませんが、よろしくお願いします!

function malihu_gallery() {
if (!is_admin()) {

    // Enqueue Malihu Gallery JavaScript
    wp_register_script('malihu-jquery-image-gallery', get_template_directory_uri(). '/js/malihu-jquery-image-gallery.js', array('jquery'), 1.0, true );
    wp_enqueue_script('malihu-jquery-image-gallery'); 

    // Enqueue Malihu Gallery Stylesheet
    wp_register_style( 'malihu-style', get_template_directory_uri() . '/CSS/malihu_gallery.css', 'all' );
    wp_enqueue_style('malihu-style' );

    function gallery_settings () { ?>
    <script type="text/javascript">
        jQuery(document).ready(function() {
            // What do I put in here?
        });
    </script><?php
    }
  }
}

add_action('init', 'malihu_gallery');
4

1 に答える 1

0

実際のコードの限られたビューに基づいて、この一連の変数をそのスペースで設定/変更する必要があると思います。

//config
//set default images view mode
$defaultViewMode="full"; //full, normal, original
$tsMargin=30; //first and last thumbnail margin (for better cursor interaction) 
$scrollEasing=600; //scroll easing amount (0 for no easing) 
$scrollEasingType="easeOutCirc"; //scroll easing type 
$thumbnailsContainerOpacity=0.8; //thumbnails area default opacity
$thumbnailsContainerMouseOutOpacity=0; //thumbnails area opacity on mouse out
$thumbnailsOpacity=0.6; //thumbnails default opacity
$nextPrevBtnsInitState="show"; //next/previous image buttons initial state ("hide" or "show")
$keyboardNavigation="on"; //enable/disable keyboard navigation ("on" or "off")

もちろん、これはこれらの変数が「/js/malihu-jquery-image-gallery.js」ファイルにまだ設定されていないことを前提としています。

于 2012-10-19T03:08:48.147 に答える