-1

我正在使用一个简单的灯箱,或者您可以将其称为模态窗口。它不会加载任何 Flash 内容,直到您单击按钮 PLAY 并且当您单击关闭时,它会停止 Flash 游戏(它实际上会停止,因为当您再次单击 PLAY 时游戏会从头开始)但这只是关于 FIREFOX 它的不是 CHROME、IE 或 Safari 中的行为,除了 MOZILLA FIREFOX,所有浏览器都以完全不同的方式运行,这与我上面描述的方式相反。

在 chrome、IE、Safari 中,可能会在 Opera 中加载 Flash 内容而不会被触发(意味着如果您不点击 PLAY BUTTON 仍然会加载),即使您点击关闭按钮也是如此。flash 游戏不会像 Firefox 中那样停止 flash,而是继续运行(就像被最小化而不是关闭)。

为什么会发生这种情况,如何解决,我无法理解这种奇怪的行为?

相关代码: CSS:

#fade { 
    display: none; 
    background: #000;
    position: fixed; left: 0; top: 0;
    width: 100%; height: 100%;
    opacity: .80;
    z-index: 9999999;
}

.popup_block{
   width: 98.95%; height: 98.2%;
    display: none; 
    padding: 0px;
    line-height:1em;
    font-size: 1em;
    position: fixed;
    top: 0px; left: 0px;
    z-index: 999999999;
    -webkit-box-shadow: 0px 0px 20px #000;
    -moz-box-shadow: 0px 0px 20px #000;
    box-shadow: 0px 0px 20px #000;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.close {
    height:20px;
    float: right;
    margin: 0 2px 0 0;   
}

HTML:

<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody>
<tr><td style="text-align: center;"><a class="poplight" href="#?w=100%" rel="popup_name"><img alt="play game" class="happybutton" onmouseout="this.style.opacity=0.8;this.filters.alpha.opacity=80" onmouseover="this.style.opacity=1;this.filters.alpha.opacity=100" src="http://farm5.static.flickr.com/4084/4998558471_27e3985c16_m.jpg" style="opacity: 0.8;" /></a></td></tr>
</tbody></table>
<div class="popup_block" id="popup_name">
<div class="gamesharebuttons addthis_toolbox addthis_default_style ">
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_button_google_plusone" g:plusone:size="medium"></a><a class="addthis_button_more">Share</a></div>
<iframe id="myvideo" width="100%" height="98%" src="http://files.cryoffalcon.com/bhgames/Adventure/star%20island.html" frameborder="0" scrolling="no" allowTransparency="false"
></iframe>
</div>

JS:

<script type="text/javascript">
$(document).ready(function(){

    //When you click on a link with class of poplight and the href starts with a # 
    $('a.poplight[href^=#]').click(function() {
        var popID = $(this).attr('rel'); //Get Popup Name
        var popURL = $(this).attr('href'); //Get Popup href to define size

        //Pull Query &amp; Variables from href URL
        var query= popURL.split('?');
        var dim= query[1].split('&amp;');
        var popWidth = dim[0].split('=')[1]; //Gets the first query string value

        //Fade in the Popup and add close button
        $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href=";#"; title=";Close It"; class=";close";><img src=";http://files.cryoffalcon.com/bloghuts/images/close%20button.png"; alt=";Close"; width=";20"; height=";20"; /></a>');

        //Define margin for center alignment (vertical + horizontal) - we add 80 to the height/width to accomodate for the padding + border width defined in the css
        var popMargTop = ($('#' + popID).height() + 0) / 0;
        var popMargLeft = ($('#' + popID).width() + 0) / 0;

        //Apply Margin to Popup
        $('#' + popID).css({ 
            'margin-top' : -popMargTop,
            'margin-left' : -popMargLeft
        });

        //Fade in Background
        $('body').append('<div id=";fade";></div>'); //Add the fade layer to bottom of the body tag.
        $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer 

        return false;
    });


    //Close Popups and Fade Layer
    $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
        $('#fade , .popup_block').fadeOut(function() {
            $('#fade, a.close').remove();  
    }); //fade them both out

        return false;
    });


});

</script>

这是现场演示页面http://bloghutsbeta.blogspot.com/2012/04/fullscreen-testing.html

4

1 回答 1

0

添加display:noneiframe包含您的 flash 的内容似乎并不能阻止 flash 在后台播放,那么您如何将其从页面中删除,将其存储在一个变量中以便按需添加。您看起来将拥有多个灯箱,因此您可以将它们存储在一个对象中。

所以在页面加载:

var popups = {};
$("a.poplight").each(function(){
  var $that = $("#" + $(this).attr('rel'));
  popups[$that.attr("id")] = $that.html(); //store the object in an object for later
  $that.html(""); //only empty it, don't remove it, so we can use it late
});

然后在您的$('a.poplight[href^=#]').click通话中,在淡入弹出窗口之前:

$('#' + popID).html(popups['#' + popID]);

希望这有效,我已经足够清楚了!

实施的

<script type="text/javascript">
var popups = {};
$(document).ready(function(){
    $("a.poplight").each(function(){
       var $that = $("#" + $(this).attr('rel'));
       popups[$that.attr("id")] = $that.html(); //store the object in an object for later
       $that.html(""); //only empty it, don't remove it, so we can use it late
    });
    //When you click on a link with class of poplight and the href starts with a # 
    $('a.poplight[href^=#]').click(function() {
        var popID = $(this).attr('rel'); //Get Popup Name
        var popURL = $(this).attr('href'); //Get Popup href to define size

        //Pull Query &amp; Variables from href URL
        var query= popURL.split('?');
        var dim= query[1].split('&amp;');
        var popWidth = dim[0].split('=')[1]; //Gets the first query string value

        //Put the html back in
        $('#' + popID).html(popups['#' + popID]);

        //Fade in the Popup and add close button
        $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href=";#"; title=";Close It"; class=";close";><img src=";http://files.cryoffalcon.com/bloghuts/images/close%20button.png"; alt=";Close"; width=";20"; height=";20"; /></a>');

        //Define margin for center alignment (vertical + horizontal) - we add 80 to the height/width to accomodate for the padding + border width defined in the css
        var popMargTop = ($('#' + popID).height() + 0) / 0;
        var popMargLeft = ($('#' + popID).width() + 0) / 0;

        //Apply Margin to Popup
        $('#' + popID).css({ 
            'margin-top' : -popMargTop,
            'margin-left' : -popMargLeft
        });

        //Fade in Background
        $('body').append('<div id=";fade";></div>'); //Add the fade layer to bottom of the body tag.
        $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer 

        return false;
    });


    //Close Popups and Fade Layer
    $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
        $('#fade , .popup_block').fadeOut(function() {
            $('#fade, a.close').remove();  
    }); //fade them both out

        return false;
    });


});

</script>
于 2012-04-26T09:39:05.357 回答