Newer
Older
ournorth2021 / views / salones.php
LuisOlaya on 14 Apr 2021 2 KB bt plenaria
<?php

if ($_SESSION['id_user'] == "") {
    echo '<script>
				window.location = "/login"
			</script>
        ';
}

$id = $pagina[1];
?>

<img id="myVideo" src="/img/img_wd/bg_salones.png" alt="">

<style>
    #myVideo {
        position: fixed;
        right: 0;
        bottom: 0px;
        min-width: 100%;
        min-height: 100%;
        z-index: -1;
        width: 100%;
    }
</style>


<div class="e_web">

    <?php /* echo $bt_iz;  */ ?>
    <?php /* echo $bt_dr; */ ?>
    <a href="<?php echo $url; ?>/lobby">
        <img src="<?php echo $url; ?>/img/img_wd/bt_back.png" width="200" style="position: absolute; bottom: 20%; left: 10%;">
    </a>
    <!-- <img src="<?php echo $base; ?>" width="100%"> -->

</div>

<div class="e_movil" align="center">
    <!-- <img src="<?php echo $base; ?>" width="100%"> -->
    <?php /* echo $bt_iz_movil; */ ?>
    <?php /* echo $bt_dr_movil;  */ ?>

    <a href="<?php echo $url; ?>/lobby">
        <img src="<?php echo $url; ?>/img/img_wd/bt_back.png" width="220">
    </a>

</div>


<style>
    .botones {
        position: absolute;
        border-radius: 30px;
        font-size: 11px;
        padding: 5px 20px;
        font-weight: bold;
    }

    .parpadea {

        animation-name: parpadeo;
        animation-duration: 1s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;

        -webkit-animation-name: parpadeo;
        -webkit-animation-duration: 3s;
        -webkit-animation-timing-function: linear;
        -webkit-animation-iteration-count: infinite;
    }

    @-moz-keyframes parpadeo {
        0% {
            transform: scale(1);
        }

        15% {
            transform: scale(1.1);
        }

        30% {
            transform: scale(1);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes parpadeo {
        0% {
            transform: scale(1);
        }

        15% {
            transform: scale(1.1);
        }

        30% {
            transform: scale(1);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes parpadeo {
        0% {
            transform: scale(1);
        }

        15% {
            transform: scale(1.1);
        }

        30% {
            transform: scale(1);
        }

        100% {
            transform: scale(1);
        }
    }
</style>

<script>
    $(document).ready(function() {
        $("#maestro").height($("#img_muestra").height());
    });

    $(window).resize(function() {
        $("#maestro").height($("#img_muestra").height());
    });
</script>