Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Gilberto Jr

Div Apagar a Luz dentro de Iframe

Recommended Posts

Bom dia pessoal, estou com um problema que eu não estou conseguindo resolver.

 

Seguinte, eu tenho uma pagina index.html, e dentro dessa pagina tem um IFRAME como mostra o código abaixo.


<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Index Inicial</title>
</head>

<body>

<iframe id="meuIframe" src="indexiframe.html"></iframe>

</body>
</html>

Segue o código da pagina indexiframe.html

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Efeito Apagar a Luz - JQuery</title>
<script type="text/javascript" src="http://www.linhadecomando.com/apagar_luz/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $('#opacidade').css('height', $(document).height()).hide();
  $('button').click(function() {
    $('#opacidade').toggle();
 
    if ($('#opacidade').is(':hidden')) {
      $('button').html('Apagar a luz');
    } else {
      $('button').html('Acender a luz');
    }
    });
});
</script>
<style type="text/css">
body{
        background-color:#ffffff;
        font-family:Arial, Helvetica, sans-serif}
 
#botao{
    background-color:#666666;
    color:#FFFFFF;
    cursor:pointer;
    width:250px;
    position:relative;
    display:block;
    z-index:999
}
 
#filme{
    width:250px;
    height:250px;
    margin:0 auto;
    border:#000000 2px solid;
    padding:0;
    position:relative;
    display:block;
    z-index:999;
    background-color:#fff;
}    
 
#opacidade {
    position:fixed;
    top:0; right:0; bottom:0; left:0;
    margin:0; padding:0;
    background:#000;
    opacity:.80;
    filter: alpha(opacity=80);
    -moz-opacity: 0.80;
    z-index: 1;
}
</style>
<link href="estilo.css" rel="stylesheet" type="text/css" media="screen">
</head>
<body>
<p align="center">Exemplo de como fazer um efeito de apagar a luz, usando JQuery</p>
 
<div id="filme" align="center">Teste</div>
<p align="center"><button id="botao">Apagar a luz</button></p>
 
<div id="opacidade"></div>
</body>
</html>

 

Quando eu clicar no botão para apagar a luz quero que a div #OPACIDADE cubra tando a pagina INDEX.HTML e a pagina INDEXIFRAME.HTML.

 

Colocando o código da forma que esta acima, a div #OPACIDADE cobre somente a pagina INDEXIFRAME.HTML, quero que cubra as duas paginas.

 

Alguém poderia me ajudar nessa situação?

 

Att;

Gilberto Jr

Compartilhar este post


Link para o post
Compartilhar em outros sites

Bom dia.

Você precisa acessar o "pai" do iframe pelo JS.

Usando o parent.document dentro do iframe, mais ou menos algo como isso:

parent.document.getElementById('overlay').display = block;

Não sei como seria fazer com JQuery, não testei o código.

 

Mas a base seria essa... o seu iframe deveria estar em uma camada acima do overlay com o atributo z-index do CSS. Assim quando desse display:block; no overlay do pai do iframe, ele ficaria visível.

Compartilhar este post


Link para o post
Compartilhar em outros sites

Claro, amigo.

Fiz dois arquivos. O `a.html` é o principal e o `b.html` é o iframe. Vou postar os códigos diretamente aqui:
 

a.html

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>a</title>
	<style>
	.LuzApagada #overlay {
		z-index: 8;
		display: block;
		width: 100%;
		height: 100%;
		top:0; left:0;
		position: fixed;
		background: rgba(0,0,0,.7);
	}
	#iframe {
		z-index: 9999;
		margin: auto;
		left:0; right:0;
		display: block;
		position: absolute;
		border: none;
		width: 800px;
		height: 500px;
	}
	</style>
</head>
<body>
	<div id="container">
		<h1> Hello world! </h1>
		<p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc volutpat mi in malesuada molestie. Aliquam sit amet dignissim nisi, non suscipit arcu. Aenean pharetra consectetur tempor. Sed sollicitudin lobortis quam, sed pharetra sem aliquam ut. Duis justo nunc, mattis in magna id, rhoncus maximus ligula. Aenean sollicitudin ac ipsum in sagittis. Nulla elementum augue vitae mollis gravida. Pellentesque luctus semper turpis feugiat congue. </p>
	</div>

	<div id="overlay"></div>

	<div id="boxmodal">
		<iframe id="iframe" width="100%" height="300" src="b.html"></iframe>
	</div>

	<script>
	// Adiciona um watch ao message do window
	// https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage
	window.addEventListener("message", function(evt){
		// Se ele não vier da origin "http://sites" ele não executa
		if(evt.origin==="http://sites") {
			document.body.classList.toggle('LuzApagada');
		}
	}, false);
	</script>
</body>
</html>

 

b.html

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>b</title>
	<style>
		* { box-sizing:border-box; }
		body { background:#FFF; }
		#apagar
		{
			display: block;
			cursor:pointer;
		}
		.LuzApagada #overlay {
			z-index: 8;
			display: block;
			width: 100%;
			height: 100%;
			top:0; left:0;
			position: fixed;
			background: rgba(0,0,0,.7);
		}
		#boxmodal {
			z-index: 9999;
			margin: auto;
			left:0; right:0;
			display: block;
			position: absolute;
			padding: 20px;
			width: 90%;
			height: 90%;
		}
	</style>
</head>
<body>
	<div id="overlay"></div>

	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc volutpat mi in malesuada molestie.</p>

	<div id="boxmodal">
		<iframe width="560" height="315" src="https://www.youtube.com/embed/wPT-YdNLxCs" frameborder="0" allowfullscreen></iframe>
		<button id="apagar">Apagar a luz</button>
	</div>

	<script>
	var LuzAcesa = false;
	document.querySelector('#apagar').onclick = function() {
		// Apaga/acende a luz da página
		LuzAcesa    = !LuzAcesa;
		// Altera a classe LuzApagada do elemento `body`
		// Se ele possuir a classe ele remove, senão adicionar
		// https://developer.mozilla.org/pt-BR/docs/Web/API/Element/classList
		document.body.classList.toggle('LuzApagada');
		// Altera o texto do botão
		// Não é necessário deixar
		this.innerHTML = (LuzAcesa? 'Acender': 'Apagar') + ' a luz';
		// Envia uma mensagem para o pai
		window.parent.postMessage(LuzAcesa, "http://sites");
	}
	</script>
</body>
</html>

 

Também estão neste gist do github.

 

Talvez existam outras maneiras de se fazer isto, mas foi o que melhor consegui.

Compartilhar este post


Link para o post
Compartilhar em outros sites

Estamos quase conseguindo rsrs.

 

Então, ele esta apagando a Luz do jeito que eu quero. Mas quando eu clicar no botão para apagar a luz, a div "LuzApagada" deve ficar acima do IFRAME, tampar a pagina toda. Digamos, tampar a pagina a.html e a b.html.

 

Att;

Gilberto Jr

Compartilhar este post


Link para o post
Compartilhar em outros sites

Ah! Esqueci de avisar... rsrs

Onde tem `http://sites`, você precisa alterar para o nome do seu domínio. Se estiver no localhost precisa colocar: "http://localhost". :smile:

 

Poderia usar o location.origin, mas não sei como seria quanto à segurança. É melhor escrever o nome mesmo...

Compartilhar este post


Link para o post
Compartilhar em outros sites
2 horas atrás, Tadeu Barbosa disse:

Ah! Esqueci de avisar... rsrs

Onde tem `http://sites`, você precisa alterar para o nome do seu domínio. Se estiver no localhost precisa colocar: "http://localhost". :smile:

 

Poderia usar o location.origin, mas não sei como seria quanto à segurança. É melhor escrever o nome mesmo...

Mesmo eu colocando essa informação a div LuzApagada não cobre a pagina a.html e a pagina b.html.

 

a.html


<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>a</title>
    <style>
    .LuzApagada #overlay {
        z-index: 9999;
        display: block;
        width: 100%;
        height: 100%;
        top:0; left:0;
        position: fixed;
        background: rgba(0,0,0,.7);
    }
    #iframe {
        z-index: -1;
        margin: auto;
        left:0; right:0;
        display: block;
        position: absolute;
        border: none;
        width: 800px;
        height: 500px;
    }
    </style>
</head>
<body>
    <div id="container">
        <h1> Hello world! </h1>
        <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc volutpat mi in malesuada molestie. Aliquam sit amet dignissim nisi, non suscipit arcu. Aenean pharetra consectetur tempor. Sed sollicitudin lobortis quam, sed pharetra sem aliquam ut. Duis justo nunc, mattis in magna id, rhoncus maximus ligula. Aenean sollicitudin ac ipsum in sagittis. Nulla elementum augue vitae mollis gravida. Pellentesque luctus semper turpis feugiat congue. </p>
    </div>

    <div id="overlay"></div>

    <div id="boxmodal">
        <iframe id="iframe" width="100%" height="300" src="b.html"></iframe>
    </div>

    <script>
    // Adiciona um watch ao message do window
    // https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage
    window.addEventListener("message", function(evt){
        // Se ele não vier da origin "http://sites" ele não executa
        if(evt.origin==="http://localhost") {
            document.body.classList.toggle('LuzApagada');
        }
    }, false);
    </script>
</body>
</html>

 

b.html


<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>b</title>
    <style>
        * { box-sizing:border-box; }
        body { background:#FFF; }
        #apagar
        {
            display: block;
            cursor:pointer;
        }
        .LuzApagada #overlay {
            z-index: 8;
            display: block;
            width: 100%;
            height: 100%;
            top:0; left:0;
            position: fixed;
            background: rgba(0,0,0,.7);
        }
        #boxmodal {
            z-index: 9999;
            margin: auto;
            left:0; right:0;
            display: block;
            position: absolute;
            padding: 20px;
            width: 90%;
            height: 90%;
        }
    </style>
</head>
<body>
    <div id="overlay"></div>

    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc volutpat mi in malesuada molestie.</p>

    <div id="boxmodal">
        <iframe width="560" height="315" src="https://www.youtube.com/embed/wPT-YdNLxCs" frameborder="0" allowfullscreen></iframe>
        <button id="apagar">Apagar a luz</button>
    </div>

    <script>
    var LuzAcesa = false;
    document.querySelector('#apagar').onclick = function() {
        // Apaga/acende a luz da página
        LuzAcesa    = !LuzAcesa;

        // Altera a classe LuzApagada do elemento `body`
        // Se ele possuir a classe ele remove, senão adicionar
        // https://developer.mozilla.org/pt-BR/docs/Web/API/Element/classList
        document.body.classList.toggle('LuzApagada');

        // Altera o texto do botão
        // Não é necessário deixar
        this.innerHTML = (LuzAcesa? 'Acender': 'Apagar') + ' a luz';

        // Envia uma mensagem para o pai
        window.parent.postMessage(LuzAcesa, "http://localhost");
    }
    </script>
</body>
</html>

 

Att;

Gilberto Jr

Compartilhar este post


Link para o post
Compartilhar em outros sites

Tente dar um console.log(location.origin) na página fazendo favor e poste o resultado aqui.

Tente colocar no lugar de 'http://localhost' o location.origin.

Não sei o porque de não funcionar...

 

Há muito tempo não uso iframe. Talvez você deva usar um outro tipo de sistema, por exemplo, uma requisição AJAX para buscar o conteúdo.

Compartilhar este post


Link para o post
Compartilhar em outros sites

  • Conteúdo Similar

    • Por violin101
      Caros amigos, saudações.

      Estou com uma dúvida, referente cálculo de valores em tempo real.

      Tenho uma rotina, que faz o cálculo, o problema é mostrar o resultado.

      Quero mostrar o RESULTADO assim: 0,00  ou  0.00

      Abaixo posto o código.
      jQuery('input').on('keyup',function(){ //Remover ponto e trocar a virgula por ponto var m = document.getElementById("pgRest").value; while (m.indexOf(".") >= 0) { m = m.replace(".", ""); } m = m.replace(",","."); //Remover ponto e trocar a virgula por ponto var j = document.getElementById("pgDsct").value; while (j.indexOf(".") >= 0) { j = j.replace(".", ""); } j = j.replace(",","."); m = parseFloat(jQuery('#pgRest').val() != '' ? jQuery('#pgRest').val() : 0); j = parseFloat(jQuery('#pgDsct').val() != '' ? jQuery('#pgDsct').val() : 0); //Mostra o Resultado em Tempo Real jQuery('#pgTroco').val(m - j); <<=== aqui estou errando })  
       
      Grato,
       
      Cesar
       
       
    • Por violin101
      Caro amigos, saudações.

      Tenho uma tabela escrita em JS que funciona corretamente.
       
      Minha dúvida:
      - como devo fazer para quando a Tabela HTML estiver vazia, exibir o LOGO da Empresa ?

      Abaixo posto o script:
      document.addEventListener( 'keydown', evt => { if (!evt.ctrlKey || evt.key !== 'i' ) return;// Não é Ctrl+A, portanto interrompemos o script evt.preventDefault(); //Chama a Função Calcular Qtde X Valor Venda calcvda(); var idProdutos = document.getElementById("idProdutos").value; var descricao = document.getElementById("descricao").value; var prd_unid = document.getElementById("prd_unid").value; var estoque_atual = document.getElementById("estoque_atual").value; var qtde = document.getElementById("qtde").value; var vlrunit = document.getElementById("vlrunit").value; var vlrtotals = document.getElementById("vlrtotal").value; var vlrtotal = vlrtotals.toLocaleString('pt-br', {minimumFractionDigits: 2}); if(validarConsumo(estoque_atual)){ //Chama a Modal com Alerta. $("#modal_qtdemaior").modal(); } else { if(qtde == "" || vlrunit == "" || vlrtotal == ""){ //Chama a Modal com Alerta. $("#modal_quantidade").modal(); } else { //Monta a Tabela com os Itens html = "<tr style='font-size:13px;'>"; html += "<td width='10%' height='10' style='text-align:center;'>"+ "<input type='hidden' name='id_prds[]' value='"+idProdutos+"'>"+idProdutos+"</td>"; html += "<td width='47%' height='10'>"+ "<input type='hidden' name='descricao[]' value='"+descricao+"'>"+descricao+ "<input type='hidden' name='esp[]' value='"+prd_unid+"'> - ESP:"+prd_unid+ "<input type='hidden' name='estoq[]' value='"+estoque_atual+"'></td>"; html += "<td width='10%' height='10' style='text-align:center;'>"+ "<input type='hidden' name='qtde[]' value='"+qtde+"'>"+qtde+"</td>"; html += "<td width='12%' height='10' style='text-align:right;'>"+ "<input type='hidden' name='vlrunit[]' value='"+vlrunit+"'>"+vlrunit+"</td>"; html += "<td width='14%' height='10' style='text-align:right;'>"+ "<input type='hidden' name='vlrtotal[]' value='"+vlrtotal+"'>"+vlrtotal+"</td>"; html += "<td width='12%' height='10' style='text-align:center;'>"+ "<button type='button' class='btn btn-uvas btn-remove-produto' style='margin-right:1%; padding:1px 3px; font-size:12px;' title='Remover Item da Lista'>"+ "<span class='fa fa-minus' style='font-size:12px;'></span></button></td>"; html += "</tr>"; $("#tbventas tbody").append(html); //Função para Somar os Itens do Lançamento somar(); $("#idProdutos").val(null); $("#descricao").val(null); $("#prd_unid").val(null); $("#qtde").val(null); $("#vlrunit").val(null); $("#vlrtotal").val(null); $("#idProdutos").focus(); //Se INCLUIR NOVO produto - Limpa a Forma de Pagamento $("#pgSoma").val(null); $("#pgRest").val(null); $("#pgDsct").val(null); $("#pgTroco").val(null); $("#tbpagar tbody").empty(); }//Fim do IF-qtde }//Fim do Validar Consumo });//Fim da Função btn-agregar  
      Grato,

      Cesar
       
    • Por violin101
      Caros amigos, saudações.

      Estou com uma pequena dúvida se é possível ser realizado.

      Preciso passar 2 IDs para o Sistema executar a função, estou utilizando desta forma e gostaria de saber como faço via JS para passar os parâmetro que preciso.

      Observação:
      Dentro da TABELA utilizei 2 Forms, para passar os IDS que preciso, funcionou conforme código abaixo.
      <div class="card-body"> <table id="tab_clie" class="table table-bordered table-hover"> <thead> <tr> <th style="text-align:center; width:10%;">Pedido Nº</th> <th style="text-align:center; width:10%;">Data Pedido</th> <th style="text-align:center; width:32%;">Fornecedor</th> <th style="text-align:center; width:10%;">Status</th> <th style="text-align:center; width:5%;">Ação</th> </tr> </thead> <tbody> <?php foreach ($results as $r) { $dta_ped = date(('d/m/Y'), strtotime($r->dataPedido)); switch ($r->pd_status) { case '1': $status = '&nbsp;&nbsp;Aberto&nbsp;&nbsp;'; $txt = '#FFFFFF'; //Cor: Branco $cor = '#000000'; //Cor: Preta break; case '2': $status = 'Atendido Total'; $txt = '#FFFFFF'; //Cor: Branco $cor = '#086108'; //Cor: Verde break; case '3': $status = 'Atendido Parcial'; $txt = '#000000'; //Cor: Branco $cor = '#FEA118'; //Cor: Amarelo break; default: $status = 'Cancelado'; $txt = '#FFFFFF'; //Cor: Branco $cor = '#D20101'; //Cor: Vermelho break; } echo '<tr>'; echo '<td width="10%" height="10" style="text-align:center;">'.$r->pd_numero.'</td>'; echo '<td width="10%" height="10" style="text-align:center;">'.$dta_ped.'</td>'; echo '<td width="32%" height="10" style="text-align:left;">'.$r->nome.'</td>'; echo '<td width="10%" height="10" style="text-align:left;"><span class="badge" style="color:'.$txt.'; background-color:'.$cor.'; border-color:'.$cor.'">'.$status.'</span></td>'; echo '<td width="5%" style="text-align:center;">'; ?> <div class="row"> <?php if($this->permission->checkPermission($this->session->userdata('permissao'), 'vPedido')){ ?> <form action="<?= base_url() ?>compras/pedidos/visualizar" method="POST" > <input type="hidden" name="idPedido" value="<?php echo $r->idPedidos; ?>"> <input type="hidden" name="nrPedido" value="<?php echo $r->pd_numero; ?>"> <button class="btn btn-warning" title="Visualizar" style="margin-left:50%; padding: 1px 3px;"><i class="fa fa-search icon-white"></i></button> </form> <?php } if($this->permission->checkPermission($this->session->userdata('permissao'), 'ePedido')){ ?> <form action="<?= base_url() ?>compras/pedidos/editar" method="POST" > <input type="hidden" name="idPedido" value="<?php echo $r->idPedidos; ?>"> <input type="hidden" name="nrPedido" value="<?php echo $r->pd_numero; ?>"> <button class="btn btn-primary" title="Editar" style="margin-left:50%; padding: 1px 3px;"><i class="fa fa-edit icon-white"></i></button> </form> <?php } ?> </div> <?php echo '</td>'; echo '</tr>'; } ?> </tbody> </table> </div>
      Grato,

      Cesar.
    • Por belann
      Olá!
       
      Estou usando o editor quill em uma página html, sem fazer a instalação com npm, mas usando as api´s via internet com http, no entanto não consigo fazer a tecla enter funcionar para mudança de linha, tentei essa configuração abaixo, mas não funcionou.
       
      modules: {       syntax: true,       toolbar: '#toolbar-container',       keyboard: {         bindings: {           enter: {             key: 13,             handler: function(range, context) {                       quill.formatLine(range.index, range.length, { 'align': '' });             }           }  
       
    • Por violin101
      Caros amigos, saudações.
       
      Gostaria de poder tirar uma dúvida com os amigos.
       
      Como faço uma função para Comparar a Data Digitada pelo o Usuário com a Data Atual ?

      Data Digitada:  01/09/2024
       
      Exemplo:
      25/09/2024 é menor que DATA Atual  ====> mensagem: informe uma data válida.
      25/09/2024 é igual DATA Atual ===> o sistema libera os INPUT's.
       
      Como faço uma comparação com a Data Atual, para não Deixar Gravar Data retroativa a data Atual.
       
      Grato,
       
      Cesar
×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.