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:1000px;
- height:300px;
- background-image:url(http://lorempixel.com/1000/300);
- }
- nav {
- width:1000px;
- 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;
- }
- </style>
- </head>
- <body>
- <div class="wrap">
- <header id="hdr"></header>
- <nav>
- <a href="javascript:bg('food')">HOME</a>
- <a href="javascript:bg('cats')">JavaScript</a>
- <a href="javascript:bg('sports')">CSS</a>
- <a href="javascript:bg('transport')">PHP&MySql</a>
- </nav>
- </div>
- <script>
- function bg(c) {
- var src = "http://lorempixel.com/1000/300/" + c;
- //alert(src);
- var h = document.getElementById("hdr");
- var url = "url(" + src + ")";
- h.style.backgroundImage = url;
- }
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment