interout | Date: Tuesday, 2013-09-17, 7:58 PM | Message # 1 |
Group: Administrators
Messages: 1027
|
Code <style> #parent_popup { background-color: rgba(0, 0, 0, 0.8); display: none; position: fixed; z-index: 99999; top: 0; right: 0; bottom: 0; left: 0; } #popup { background: #fff; /* Размер окна */ width: 520px; margin: 10% auto; padding: 5px 20px 13px 20px; border: 10px solid #ddd; position: relative; -webkit-box-shadow: 0px 0px 20px #000; -moz-box-shadow: 0px 0px 20px #000; box-shadow: 0px 0px 20px #000; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; } #popup h4{ /* Шрифт заголовка */ font:28px Monotype Corsiva, Arial; font-weight: bold; text-align: center; color: #008000; text-shadow: 0 1px 3px rgba(0,0,0,.3); } #popup h5{ /* Шрифт заголовка */ font:24px Monotype Corsiva, Arial; color: red; text-align: center; text-shadow: 0 1px 3px rgba(0,0,0,.3); } /* кнопка закрытия */ .close { background-color: rgba(0, 0, 0, 0.8); border: 2px solid #ccc; height: 24px; line-height: 24px; position: absolute; right: -24px; cursor: pointer; font-weight: bold; text-align: center; text-decoration: none; color: rgba(255, 255, 255, 0.9); font-size: 16px; text-shadow: 0 -1px rgba(0, 0, 0, 0.9); top: -24px; width: 24px; -webkit-border-radius: 15px; -moz-border-radius: 15px; -ms-border-radius: 15px; -o-border-radius: 15px; border-radius: 15px; -moz-box-shadow: 1px 1px 3px #000; -webkit-box-shadow: 1px 1px 3px #000; box-shadow: 1px 1px 3px #000; } .close:hover { background-color: rgba(0, 122, 200, 0.8); } </style> <div id="parent_popup"> <div id="popup"> <h4>Dear users UcozBaze</h4> <p>Do you want our site to be displayed in your eyes beautiful and elegant?</p> <p><h5>Then do not pull on the rubber!</h5></p> <p>Urgent install the free browser Mozila!<p> <p style="text-align: center;"> <strong> <a class="button" href="http://www.mozilla.org/en-US/">Downloade Free Here</a> </strong></p> <a class="close" title="Закрыть" onclick="document.getElementById('parent_popup').style.display='none';">X</a> </div> </div> <script type="text/javascript"> var delay_popup = 2000; setTimeout("document.getElementById('parent_popup').style.display='block'", delay_popup); </script>
|
|
|
|