Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>HTML5</title>
- <style>
- header {
- width:100%;
- height:300px;
- background-image:url(images/main.jpg);
- background-position: center;
- }
- nav {
- width:100%;
- height: 50px;
- background-color:rgb(0,0,0);
- }
- nav a {
- padding:0 10px;
- height:50px;
- color:white;
- font-size: 1.7em;
- line-height:50px;
- display:inline-block;
- text-decoration:none;
- }
- nav a:hover {
- background-color:#f00;
- }
- body { margin:0; }
- .wrap {
- width:1000px;
- margin:0 auto;
- }
- .hmenu { display: none;}
- @media screen and (max-width: 1000px) {
- .wrap { width: 100%; }
- header { background-size:cover; }
- }
- @media screen and (max-width: 768px) {
- header { height:200px; }
- nav { height:30px; }
- nav a {
- height:30px;
- line-height: 30px;
- font-size: 1.3em;
- }
- }
- @media screen and (max-width: 320px) {
- header { height:100px; }
- .hmenu {
- height: 30px;
- width: 100%;
- display: block;
- background-color: black;
- color: white;
- line-height: 30px;
- cursor:pointer;
- border-bottom:1px solid white;
- }
- nav { height:auto; display:none;}
- nav a {
- height:30px;
- line-height: 30px;
- font-size: 0.8em;
- display: block;
- width: 100%;
- border-bottom:1px solid white;
- }
- }
- </style>
- </head>
- <body>
- <div class="wrap">
- <header id="hdr"></header>
- <div class="hmenu">MENU...</div>
- <nav>
- <a href="#" class="menu" onmouseover="bg('food')">HOME</a>
- <a href="#" class="menu" onmouseover="bg('cats')">JavaScript</a>
- <a href="#" class="menu" onmouseover="bg('sports')">CSS</a>
- <a href="#" class="menu" onmouseover="bg('transport')">PHP&MySql</a>
- </nav>
- </div>
- <script src="http://code.jquery.com/jquery-latest.js"></script>
- <script>
- function bg(c) {
- var src = "images/" + c + ".jpg";
- var url = "url(" + src + ")";
- $("#hdr").css("background-image",url);
- }
- $(".hmenu").click(function(){
- $("nav").toggle();
- });
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment