Guest User

Untitled

a guest
Jan 15th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.54 KB | None | 0 0
  1. Paste into the bottom of your code (needs jquery)
  2.  
  3. <div class="width">
  4.     <script type="text/javascript">
  5.         $(window).resize(function(e){
  6.             var width = $(window).width();
  7.             $(".width").html(width);
  8.         });
  9.                    
  10.         $(document).ready(function(e){
  11.             var width = $(window).width();
  12.             $(".width").html(width);
  13.                     });
  14.     </script>
  15. </div>
  16.  
  17. Style with:
  18.  
  19. .width {
  20.     position: fixed;
  21.     background: #dd4400;
  22.     color: white;
  23.     height: 2em;
  24.     line-height: 2em;
  25.     width: 70px;
  26.     text-align: center;
  27.     top: 40px;
  28.     left: 48%;
  29.     font-weight: bold;
  30. }
Add Comment
Please, Sign In to add comment