【问题标题】:longtail player + anythingslider + event listeners长尾播放器 + 任何滑块 + 事件监听器
【发布时间】:2010-01-05 20:16:39
【问题描述】:

我已经使用图像和视频内容(视频使用 longtail flv 播放器 - 许可版本 5)实现了 AnythingSlider (http://css-tricks.com/anythingslider-jquery-plugin/)。

问题:当用户播放视频时,幻灯片不知道发生了这种情况,因此幻灯片在视频运行时不断循环播放。所以您让幻灯片在运行 - 并且用户可以听到音频但视频已循环关闭。

我正在尝试找出一个事件侦听器,当 LONGTAIL 播放器处于 PLAYING 状态时,它会查看并通知 AnySlider 它需要停止。

这是我到目前为止所得到的……视频播放器事件侦听器正在工作(现在我会弹出警报,以便我可以确定正在听到事件)。播放器初始化时会弹出警报..当我们按下视频上的播放按钮时会弹出警报...当视频停止播放时会弹出警报。 但是......我还没有制定出正确的语法来向anythingslider 发出信号以停止!

我以为会是这样:

$VUslider.startStop(false);

下面是我到目前为止的代码......从初始化滑块的代码开始。

    function formatText(index, panel) {
  return index + "";
  }
$(function () {
 $('.VUslider').VUslider({
 autoPlay: true,
    delay: 7000,
    startStopped: false,
    animationTime: 200,
    hashTags: true,
    buildNavigation: false,
    pauseOnHover: true,
    navigationFormatter: formatText
    });
});

var player = null;
function playerReadyCallback(obj)  {
 player = document.getElementsByName(obj.id)[0];
    alert('the videoplayer '+obj['id']+' has been instantiated');
    player.addModelListener('STATE',     'stateMonitor');
}
function stateMonitor(obj) {
   currentState = obj['newstate'];
 if(currentState == 'PLAYING') {
   alert ('the videoplayer '+obj['id']+'  is playing now!');
   $VUslider.startStop(false);  // Trigger slideshow stop   
    }
 if(obj.newstate == 'COMPLETED') {
   alert ('the videoplayer '+obj['id']+'  has stopped playing now!');
   $VUslider.startStop(true);  // Trigger slideshow start   
    }
}

供参考...这是任何滑块代码:

(function($){

    $.VUslider = function(el, options){
        // To avoid scope issues, use 'base' instead of 'this'
        // to reference this class from internal events and functions.
        var base = this;

        // Access to jQuery and DOM versions of element
        base.$el = $(el);
        base.el = el; 

        // Set up a few defaults
        base.currentPage = 1;
        base.timer = null;
        base.playing = false;

        // Add a reverse reference to the DOM object
        base.$el.data("AnythingSlider", base);

        base.init = function(){
            base.options = $.extend({},$.VUslider.defaults, options);

            // Cache existing DOM elements for later 
            base.$wrapper = base.$el.find('> div').css('overflow', 'hidden');
            base.$slider  = base.$wrapper.find('> ul');
            base.$items   = base.$slider.find('> li');
            base.$single  = base.$items.filter(':first');

            // Build the navigation if needed
            if(base.options.buildNavigation) base.buildNavigation();

            // Get the details
            base.singleWidth = base.$single.outerWidth();
            base.pages = base.$items.length;

            // Top and tail the list with 'visible' number of items, top has the last section, and tail has the first
            // This supports the "infinite" scrolling
            base.$items.filter(':first').before(base.$items.filter(':last').clone().addClass('cloned'));
            base.$items.filter(':last' ).after(base.$items.filter(':first').clone().addClass('cloned'));

            // We just added two items, time to re-cache the list
            base.$items = base.$slider.find('> li'); // reselect

            // Setup our forward/backward navigation
            base.buildNextBackButtons();

            // If autoPlay functionality is included, then initialize the settings
            if(base.options.autoPlay) {
                base.playing = !base.options.startStopped; // Sets the playing variable to false if startStopped is true
                base.buildAutoPlay();
            };

            // If pauseOnHover then add hover effects
            if(base.options.pauseOnHover) {
                base.$el.hover(function(){
                    base.clearTimer();
                }, function(){
                    base.startStop(base.playing);
                });
            }

            // If a hash can not be used to trigger the plugin, then go to page 1
            if((base.options.hashTags == true && !base.gotoHash()) || base.options.hashTags == false){
                base.setCurrentPage(1);
            };
        };

        base.gotoPage = function(page, autoplay){
            // When autoplay isn't passed, we stop the timer
            if(autoplay !== true) autoplay = false;
            if(!autoplay) base.startStop(false);

            if(typeof(page) == "undefined" || page == null) {
                page = 1;
                base.setCurrentPage(1);
            };

            // Just check for bounds
            if(page > base.pages + 1) page = base.pages;
            if(page < 0 ) page = 1;

            var dir = page < base.currentPage ? -1 : 1,
                n = Math.abs(base.currentPage - page),
                left = base.singleWidth * dir * n;

            base.$wrapper.filter(':not(:animated)').animate({
                scrollLeft : '+=' + left
            }, base.options.animationTime, base.options.easing, function () {
                if (page == 0) {
                    base.$wrapper.scrollLeft(base.singleWidth * base.pages);
                    page = base.pages;
                } else if (page > base.pages) {
                    base.$wrapper.scrollLeft(base.singleWidth);
                    // reset back to start position
                    page = 1;
                };
                base.setCurrentPage(page);

            });
        };

        base.setCurrentPage = function(page, move){
            // Set visual
            if(base.options.buildNavigation){
                base.$nav.find('.cur').removeClass('cur');
                $(base.$navLinks[page - 1]).addClass('cur');    
            };

            // Only change left if move does not equal false
            if(move !== false) base.$wrapper.scrollLeft(base.singleWidth * page);

            // Update local variable
            base.currentPage = page;
        };

        base.goForward = function(autoplay){
            if(autoplay !== true) autoplay = false;
            base.gotoPage(base.currentPage + 1, autoplay);
        };

        base.goBack = function(){
            base.gotoPage(base.currentPage - 1);
        };

        // This method tries to find a hash that matches panel-X
        // If found, it tries to find a matching item
        // If that is found as well, then that item starts visible
        base.gotoHash = function(){
            if(/^#?panel-\d+$/.test(window.location.hash)){
                var index = parseInt(window.location.hash.substr(7));
                var $item = base.$items.filter(':eq(' + index + ')');
                if($item.length != 0){
                    base.setCurrentPage(index);
                    return true;
                };
            };
            return false; // A item wasn't found;
        };

        // Creates the numbered navigation links
        base.buildNavigation = function(){
            base.$nav = $("<div id='thumbNav'></div>").appendTo(base.$el);
            base.$items.each(function(i,el){
                var index = i + 1;
                var $a = $("<a href='#'></a>");

                // If a formatter function is present, use it
                if( typeof(base.options.navigationFormatter) == "function"){
                    $a.html(base.options.navigationFormatter(index, $(this)));
                } else {
                    $a.text(index);
                }
                $a.click(function(e){
                    base.gotoPage(index);

                    if (base.options.hashTags)
                        base.setHash('panel-' + index);

                    e.preventDefault();
                });
                base.$nav.append($a);
            });
            base.$navLinks = base.$nav.find('> a');
        };


        // Creates the Forward/Backward buttons
        base.buildNextBackButtons = function(){
            var $forward = $('<a class="arrow forward">></a>'),
                $back    = $('<a class="arrow back"><</a>');

            // Bind to the forward and back buttons
            $back.click(function(e){
                base.goBack();
                e.preventDefault();
            });

            $forward.click(function(e){
                base.goForward();
                e.preventDefault();
            });

            // Append elements to page
            base.$wrapper.after($back).after($forward);
        };

        // Creates the Start/Stop button
        base.buildAutoPlay = function(){

            base.$startStop = $("<a href='#' id='start-stop'></a>").html(base.playing ? base.options.stopText :  base.options.startText);
            base.$el.append(base.$startStop);            
            base.$startStop.click(function(e){
                base.startStop(!base.playing);
                e.preventDefault();
            });

            // Use the same setting, but trigger the start;
            base.startStop(base.playing);
        };

        // Handles stopping and playing the slideshow
        // Pass startStop(false) to stop and startStop(true) to play
        base.startStop = function(playing){
            if(playing !== true) playing = false; // Default if not supplied is false

            // Update variable
            base.playing = playing;

            // Toggle playing and text
            if(base.options.autoPlay) base.$startStop.toggleClass("playing", playing).html( playing ? base.options.stopText : base.options.startText );

            if(playing){
                base.clearTimer(); // Just in case this was triggered twice in a row
                base.timer = window.setInterval(function(){
                    base.goForward(true);
                }, base.options.delay);
            } else {
                base.clearTimer();
            };
        };

        base.clearTimer = function(){
            // Clear the timer only if it is set
            if(base.timer) window.clearInterval(base.timer);
        };

        // Taken from AJAXY jquery.history Plugin
        base.setHash = function ( hash ) {
            // Write hash
            if ( typeof window.location.hash !== 'undefined' ) {
                if ( window.location.hash !== hash ) {
                    window.location.hash = hash;
                };
            } else if ( location.hash !== hash ) {
                location.hash = hash;
            };

            // Done
            return hash;
        };
        // <-- End AJAXY code


        // Trigger the initialization
        base.init();
    };


    $.VUslider.defaults = {
        easing: "swing",                // Anything other than "linear" or "swing" requires the easing plugin
        autoPlay: true,                 // This turns off the entire FUNCTIONALY, not just if it starts running or not
        startStopped: false,            // If autoPlay is on, this can force it to start stopped
        delay: 3000,                    // How long between slide transitions in AutoPlay mode
        animationTime: 600,             // How long the slide transition takes
        hashTags: true,                 // Should links change the hashtag in the URL?
        buildNavigation: true,          // If true, builds and list of anchor links to link to each slide
        pauseOnHover: true,             // If true, and autoPlay is enabled, the show will pause on hover
        startText: "Start",             // Start text
        stopText: "Stop",               // Stop text
        navigationFormatter: null       // Details at the top of the file on this use (advanced use)
    };


    $.fn.VUslider = function(options){
        if(typeof(options) == "object"){
            return this.each(function(i){           
                (new $.VUslider(this, options));

                // This plugin supports multiple instances, but only one can support hash-tag support
                // This disables hash-tags on all items but the first one
                options.hashTags = false;
            }); 
        } else if (typeof(options) == "number") {

            return this.each(function(i){
                var anySlide = $(this).data('AnythingSlider');
                if(anySlide){
                    anySlide.gotoPage(options);
                }
            });
        }
    };


})(jQuery);

【问题讨论】:

    标签: javascript jquery addeventlistener jquery-events


    【解决方案1】:

    您是否将 $VUslider 设置为等于 $('.VUslider').VUslider({ . . }); ?

    在您的示例代码中,您不是。

    你应该这样做:

    $VUslider = $('.VUslider').VUslider({
        autoPlay: true,
        delay: 7000,
        startStopped: false,
        animationTime: 200,
        hashTags: true,
        buildNavigation: false,
        pauseOnHover: true,
        navigationFormatter: formatText
    });
    

    【讨论】:

    • 我刚刚在上面的帖子中添加了anythingslider javascript。
    • 好的 - 我更新了函数......但仍然没有任何进展。这是一个测试页面,可以准确显示正在发生的事情。 silverberry.org/beta/slider-longtail
    【解决方案2】:

    这有点像在黑暗中刺伤,所以我将尝试解释一下我的推理。

    在您已经创建 VUslider 位后,尝试执行此操作以启动/停止滑块:

    $('.VUslider').VUslider.startStop(false);

    // this will toggle between starting and stopping but doesn't give control
    // to call start or stop specifically.
    $('#start-stop').click();
    

    当您调用 $('.VUslider').VUslider({...}) 时,它不会返回任何内容,因此此时 VUslider 没有句柄($.each(..) 没有返回任何东西)。这有望让您获得对脚本和 startStop 函数的引用。

    HTH

    【讨论】:

    • 试过这个......不走运......(幸运的是,您可以很容易地判断幻灯片是否已经停止,因为暂停按钮变成了绿色的播放按钮。不幸的是,在这种情况下它一直在播放。 ) 完成一半脚本(事件侦听器)令人沮丧——只是实际上无法让它做任何事情!
    • 我越读VUslider代码,越觉得开发者没有暴露任何内部方法(即不能以用户身份调用startStop)。 startStop 函数附加到内部参考(基),而不是外部公开。如果你不介意修改原来的脚本,我可以给你公开这个函数的代码。
    • @Lacy,我已经更改了我的代码建议。试试这个,让我知道它是否适合你。我没有尝试调用库(我仍然认为这不太可能),而是利用了库放置在开始/停止链接上的附加函数。
    • 成功了!虽然有一些怪癖......它并不完全了解发生了什么 - 我认为它现在只是在寻找点击 - 如果你在视频上按下播放......它会停止幻灯片。如果您停止视频 - 然后重新启动视频 - 它会重新启动幻灯片(我猜它会注册另一个点击,并认为它应该再次更改状态)?非常感谢你看这个:)我很兴奋,它首先停止了!!
    • 你说得对,只是注册点击。您可以进行一些本地状态管理/检查,但它可能与实际滑块不同步。如果滑块库设计器将公开启动/停止功能,您可以更轻松地解决这个问题。
    猜你喜欢
    • 2015-07-17
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-02-21
    • 2019-05-18
    • 1970-01-01
    • 2023-03-14
    相关资源
    最近更新 更多