Answers for "popup"

0

popup

<div class="cont1" id="blur">
			<div class="cont2">
				<p>things must blur (all type of tags)</p>
				<button onclick="popup()">popup</button>
			</div>
		</div>
		<div id="popup">
			<p>Things shol=uld show in popup (all type of tage)</p>
			<button onclick="popup()">close</button>
		</div>
Posted by: Guest on May-06-2021
0

pop up

 
<a href="#" onClick='f=window.open("includes/mapage.php","fenetre","width=800, height=600, top=30, left=50") '>
 Fenêtre Pop up
 
</a>
Posted by: Guest on June-04-2021
0

popup

/* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup (appears on top) 
*/
.popup .popuptext 
{
  visibility: hidden;
  width: 
160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;

    
margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";

    position: absolute;
  
top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;

    border-color: #555 transparent 
transparent transparent;
}

/* 
Toggle this class when clicking on the popup container (hide and show the 
popup) */
.popup .show {
  
visibility: visible;
  -webkit-animation: 
fadeIn 1s;
  animation: fadeIn 1s
}

/* Add animation (fade in the popup) */

@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}


@keyframes fadeIn {
  from {opacity: 0;}
  
to {opacity:1 ;}
}
Posted by: Brian Gwinn on April-06-2023

Browse Popular Code Answers by Language