Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <style>
- /* Popup container - can be anything you want */
- .popup {
- position: relative;
- display: inline-block;
- cursor: pointer;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- font-family: romantic;
- font-size: 1em;
- color: white;
- font-weight: bold;
- padding-left: 15px;
- padding-right: 15x;
- text-shadow: -1px 0 #549ced, 0 1px #549ced, 1px 0 #549ced, 0 -1px #549ced, 0 0;
- letter-spacing: 2.5px;
- }
- /* The actual popup */
- .popup .popuptext {
- visibility: hidden;
- width: 160px;
- background-color: #44BFF6BF;
- color: #fff;
- text-align: center;
- border-radius: 6px;
- padding: 8px 0;
- position: absolute;
- z-index: 1;
- bottom: 125%;
- left: 50%;
- margin-left: -80px;
- font-family: romantic;
- font-size: 0.85em;
- color: white;
- font-weight: bold;
- padding: 15px;
- text-shadow: -1px 0 #549ced, 0 1px #549ced, 1px 0 #549ced, 0 -1px #549ced, 0 0;
- letter-spacing: 2.5px;
- box-shadow: 4px 5px 10px #fff inset;
- }
- /* Popup arrow */
- .popup .popuptext::after {
- content: "";
- position: absolute;
- top: 100%;
- left: 50%;
- margin-left: -5px;
- border-width: 5px;
- border-style: solid;
- border-color: #44BFF6BF transparent transparent transparent;
- }
- /* Toggle this class - 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 ;}
- }
- </style>
- </head>
- <body style="text-align:center">
- <div class="popup" onclick="myFunction()">click me ♡
- <span class="popuptext" id="myPopup">tip: click i ii & iii for my info, scroll through the boxes for more info & click the play button for music</span>
- </div>
- <script>
- // When the user clicks on div, open the popup
- function myFunction() {
- var popup = document.getElementById("myPopup");
- popup.classList.toggle("show");
- }
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment