揭示模态时,基础iframe消失

时间:2013-12-29 16:02:26

标签: php html

当我点击按钮以显示模态然后使其消失时,该页面的flex-video iframe也会消失,我该如何解决这个问题? (在打开模态后,iframe重新出现,当我关闭它时...... iframe做同样的事情)

模态显示按钮和模态内容:

<a data-reveal-id="LoginModal" href="#" class="button">Login</a>
    <div  id="LoginModal" class="reveal-modal" data-reveal>
    <h2>Login Form</h2>
    <?php

    // show negative messages
    if ($login->errors) {
        foreach ($login->errors as $error) {
            echo $error;    
        }
    }
    ?>
    <form method="post" action="index.php" name="loginform">

    <label for="login_input_username">Username</label>
    <input id="login_input_username" class="login_input" type="text" name="user_name" required />

    <label for="login_input_password">Password</label>
    <input id="login_input_password" class="login_input" type="password" name="user_password" autocomplete="off" required />

    <input type="submit"  name="login" value="Log in" />

    </form>
    <a class="close-reveal-modal">&#215;</a>
    </div>

和flex-video

 <div class="flex-video">
    <iframe width="238" height="210" src="<?php echo $i["post_video1"];?>" frameborder="0" allowfullscreen></iframe>
 </div>

实例http://world-debate.net/index.php的网站链接(您可以使用右上角的登录/注册按钮查看)

1 个答案:

答案 0 :(得分:0)

问题是“flex-video”课程。当我取下它时,框架保持在正确的位置。尝试将类名更改为另一个或在此处检查属性。