Advertisement
fr1sk

Untitled

May 5th, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.09 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <style type="text/css">
  6.         .kutija{
  7.             display: none;
  8.             border: 2px solid red;
  9.             height: 200px;
  10.             width = 200px;
  11.             position: absolute;
  12.             bottom: 0;
  13.             right: 0;
  14.         }
  15.         .close{
  16.             background-color: coral;
  17.             position: absolute;
  18.             top: 0;
  19.             right: 0;
  20.             height: 25px;
  21.             width: 25px;
  22.             text-align: center;
  23.         }
  24.     </style>
  25.     <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
  26.     <script>
  27.      $(document).ready(function(){
  28.         $(".close").click(function(){
  29.             $(".kutija").fadeOut();
  30.         });
  31.          
  32.         $(".kutija").delay(2000).slideDown(1000);
  33.        
  34.         });
  35.     </script>
  36. </head>
  37.     <body>
  38.         <div class="kutija">
  39.        <div class="close">
  40.            X
  41.         </div>
  42.         <div>
  43.             Da li vam je potrebna pomoc?
  44.         </div>
  45.         </div>
  46.     </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement