Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.34 KB | None | 0 0
  1.  
  2.     <html>
  3.     <head>
  4.     <style>
  5.     nav {
  6.             background: blue;
  7.             /*overflow: hidden;*/
  8.             height: 25px;
  9.     }
  10.     div {
  11.             background: red;
  12.             max-width: 260px;
  13.             float: left;
  14.             transition: all 5s;
  15.             overflow: hidden;
  16.     }
  17.     div:hover {
  18.             max-width: 10000px;
  19.     }
  20.     span {
  21.             display: block;
  22.             height: 25px;
  23.     }
  24.     a {
  25.             background: green;
  26.             float: left;
  27.             display: block;
  28.             width: 130px;
  29.             height: 25px;
  30.             line-height: 25px;
  31.     }
  32.     </style>
  33.     <script>
  34.             window.onload = function(){
  35.                     var s = document.querySelectorAll('span');
  36.                     for(var i=0; i<s.length; i++){
  37.                            s[i].style.width = 130*s[i].children.length;
  38.                    }
  39.            }
  40.    </script>
  41.     </head>
  42.     <body>
  43.             <nav>
  44.                    <div>
  45.                             <span>
  46.                                     <a href='#'>Test</a>
  47.                                     <a href='#'>Test 1</a>
  48.                                     <a href='#'>Test 2</a>
  49.                             </span>
  50.                    
  51.                     </div>
  52.             </nav>
  53.     </body>
  54.     </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement