asimryu

20150921 코딩연습1

Sep 21st, 2015
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.02 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>HTML5</title>
  6. <style>
  7. header {
  8. width:1000px;
  9. height:300px;
  10. background-image:url(http://lorempixel.com/1000/300);
  11. }
  12. nav {
  13.     width:1000px;
  14.     height: 50px;
  15.     background-color:rgb(0,0,0);
  16. }
  17. nav a {
  18.     padding:0 10px;
  19.     height:50px;
  20.     color:white;
  21.     font-size: 1.7em;
  22.     line-height:50px;
  23.     display:inline-block;
  24.     text-decoration:none;
  25. }
  26. nav a:hover {
  27.     background-color:#f00;
  28. }
  29. body { margin:0; }
  30. .wrap {
  31.     width:1000px;
  32.     margin:0 auto;
  33. }
  34. </style>
  35. </head>
  36. <body>
  37. <div class="wrap">
  38. <header id="hdr"></header>
  39. <nav>
  40. <a href="javascript:bg('food')">HOME</a>
  41. <a href="javascript:bg('cats')">JavaScript</a>
  42. <a href="javascript:bg('sports')">CSS</a>
  43. <a href="javascript:bg('transport')">PHP&amp;MySql</a>
  44. </nav>
  45. </div>
  46. <script>
  47. function bg(c) {
  48.     var src = "http://lorempixel.com/1000/300/" + c;
  49.     //alert(src);
  50.     var h = document.getElementById("hdr");
  51.     var url = "url(" + src + ")";
  52.     h.style.backgroundImage = url;
  53. }
  54. </script>
  55. </body>
  56. </html>
Advertisement
Add Comment
Please, Sign In to add comment