Advertisement
Guest User

Untitled

a guest
Jan 11th, 2020
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Analog Dump</title>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <link rel="stylesheet" type="text/css" href="analog.css">
  7.  
  8. </head>
  9. <body>
  10. <div class="background">
  11.  
  12. <div class="nav">
  13. <a class="a active" href="#">Home</a>
  14. <a class="b"href="#">Gear</a>
  15. <a class="c" href="#">Colour Dump</a>
  16. <a class="d" href="#">BnW Dump</a>
  17. </div>
  18.  
  19. <div class="content">
  20.  
  21. <div class="home">
  22. <h1>Analog Dump</h1>
  23. <h3>Don Chia</h3>
  24. </div>
  25.  
  26. <div class="aboutus">
  27. <p>I shoot mainly on my 1979 Yashika FX-7 with Kodak ColorPlus 200 as it is the most budget film I can find. I have also experimented with ilford HP5 400 black and white film stock and I am currently shooting with FujiColor 200. I also own a 1990s autofocus Minolta that miraculously still works. I shoot with a lightmeter app as my Yashika has a faulty exposure check (it's 40 years old, give it a break). I don't usually use analog cameras as they tend to be expensive to shoot, it costs around $15 to shoot and develop colour film while it costs around $20 to shoot and develop black and white film. I tend to only shoot analog during special occasions.</p>
  28. </div>
  29.  
  30. <div class="gallery">
  31. <div class="image">
  32. <img src="https://i.imgur.com/CWrU66v.jpg"/>
  33. </div>
  34.  
  35. <div class="image">
  36. <img src="https://i.imgur.com/5OSCm7C.jpg"/>
  37. </div>
  38.  
  39.  
  40. <div class="image">
  41. <img src="https://i.imgur.com/hnJTLqQ.jpg"/>
  42. </div>
  43.  
  44.  
  45. <div class="image">
  46. <img src="https://i.imgur.com/g3qICvC.jpg"/>
  47. </div>
  48.  
  49.  
  50. <div class="image">
  51. <img src="https://i.imgur.com/JljquXY.jpg"/>
  52. </div>
  53.  
  54.  
  55. <div class="image">
  56. <img src="https://i.imgur.com/gy7musH.jpg"/>
  57. </div>
  58.  
  59.  
  60. <div class="image">
  61. <img src="https://i.imgur.com/HLHYNmq.jpg"/>
  62. </div>
  63.  
  64.  
  65. <div class="image">
  66. <img src="https://i.imgur.com/fzkxsFy.jpg"/>
  67. </div>
  68.  
  69.  
  70. <div class="image">
  71. <img src="https://i.imgur.com/jU8rZ9H.jpg"/>
  72. </div>
  73.  
  74. </div>
  75.  
  76. </div>
  77. </body>
  78. <script type="text/javascript" src="/Users/donchia/Documents/Analog/jquery-3.2.1.min.js"></script>
  79. <script type="text/javascript">
  80.  
  81. $(document).ready(function(){
  82. $('a').click(function(){
  83. //alert("i am click")
  84. var selected = $(this);
  85. $('a').removeClass('active');
  86. $(selected).addClass('active');
  87. });
  88.  
  89. var $a = $('.a'),
  90. $b = $('.b'),
  91. $c = $('.c'),
  92. $d = $('.d'),
  93. $home = $('.home'),
  94. $aboutus = $('.aboutus'),
  95. $gallery = $('.gallery'),
  96. $contactus = $('.contactus');
  97.  
  98. $a.click(function(){
  99. $home.fadeIn();
  100. $aboutus.fadeOut();
  101. $gallery.fadeOut();
  102. $contactus.fadeOut();
  103. });
  104. $b.click(function(){
  105. $aboutus.fadeIn();
  106. $home.fadeOut();
  107. $gallery.fadeOut();
  108. $contactus.fadeOut();
  109. });
  110. $c.click(function(){
  111. $gallery.fadeIn();
  112. $home.fadeOut();
  113. $aboutus.fadeOut();
  114. $contactus.fadeOut();
  115. });
  116. $d.click(function(){
  117. $contactus.fadeIn();
  118. $home.fadeOut();
  119. $gallery.fadeOut();
  120. $aboutus.fadeOut();
  121. });
  122. });
  123.  
  124. </script>
  125.  
  126.  
  127. </head>
  128. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement