Advertisement
ProjcheskiF1

[IA] Lab vezba 2. Zadaca 2 [2016]

Oct 29th, 2016
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 3.87 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Zadaca 2</title>
  6.     <script src="jquery-3.1.1.js"></script>
  7. <style>
  8.  
  9.  
  10.  
  11.     button{
  12.  
  13.         width: 149px;
  14.         padding: 4px;
  15.         padding-left: 10px;
  16.         text-align: left;
  17.         margin-right: 0;
  18.         background-color: cornflowerblue;
  19.         color: white;
  20.         border: solid;
  21.         border-color: dimgray;
  22.         border-width: 1px;
  23.         font-style: italic;
  24.         margin-left: 70px;
  25.     }
  26.     .tabs{
  27.         width: 1000px;
  28.         padding: 100px;
  29.         background-color: lightgoldenrodyellow;
  30.         color: blue;
  31.         margin-top: 0;
  32.         border: solid;
  33.         border-color: blue;
  34.         border-width: 0 1px 1px;
  35.         margin-left: 75px;
  36.         height: 500px;
  37.     }
  38.     #buttonsDiv{
  39.         width: 1182px;
  40.         padding: 10px;
  41.         background-color: blue;
  42.         border: solid;
  43.         border: dimgray;
  44.         border-width: 1px;
  45.         margin-left: 75px;
  46.         color: white;
  47.     }
  48.     a:hover{
  49.         text-decoration: underline;
  50.     }
  51.     #mainDiv{
  52.     }
  53. </style>
  54. </head>
  55. <body onload="home()">
  56.  
  57. <script type="text/javascript">
  58.     var momentalno=5;
  59.     function smeniTab(x){
  60.         if(momentalno!=x){
  61.             $("#bt" + x).css({
  62.                 "background-color":"lightgoldenrodyellow",
  63.                 "font-weight": "bold",
  64.                 "color":"blue"
  65.             });
  66.             $("#bt" + momentalno).css({
  67.                 "background-color":"cornflowerblue",
  68.                 "font-weight": "normal",
  69.                 "color": "lightgoldenrodyellow"
  70.  
  71.             });
  72.             $("#tab"+momentalno).hide();
  73.             $("#tab" + x).show();
  74.             momentalno=x;
  75.         }
  76.  
  77.     }
  78.  
  79.  
  80.  
  81. </script>
  82.  
  83. <div id="buttonsDiv">
  84.     <span style="margin-left: 30px; font-style: italic;"><a onclick="home()">THE HYPERMARKET</a></span>
  85.     <br>
  86.     <button id="bt1" onclick="smeniTab(1)">Food and drink</button>
  87.     <button id="bt2" onclick="smeniTab(2)">Electronics</button>
  88.     <button id="bt3" onclick="smeniTab(3)">Home and garden</button>
  89.     <button id="bt4" onclick="smeniTab(4)">About us</button>
  90.     <button id="bt5" onclick="smeniTab(5)">Contact</button>
  91.  
  92.  
  93. </div>
  94.  
  95.  
  96.  
  97. <div id="mainDiv">
  98.  
  99. <div id="tab1" class="tabs">
  100.     <span><b>WELCOME TO THE HYPERMARKET</b><br><br><br>It's Halloween, and we are waiting for you to come to our Hypermarket. We have sale on 90% of our food and drink products</span>
  101. </div>
  102. <div id="tab2" class="tabs">
  103.     <span>HOT OFFER!!!<br> Come to our Hypermarket a buy the <b style="color: firebrick">Sony Xperia Z5</b> for just 250$,<br>or
  104.     you can buy the headphones that will change your way<br>of listening music forever, the <b style="color: firebrick"> Beats Solo 3</b> for just 199$. </span>
  105. </div>
  106. <div id="tab3" class="tabs">
  107.     <span>It's Halloween. Come to our Hypermarket and buy a perfect decoration for your garden and backyard.</span>
  108.     Also we have some special decoratons for your home, that will make your house looks like a Dracula castle.
  109. </div>
  110. <div id="tab4" class="tabs">
  111.     <span><b>THE HYPERMARKET</b> is a world wide hypermarket chain that has markets in 56 countries in the world.</span>
  112.     We have the best prices, top quality products, and the best personal who take cares for our everyday clients.
  113.     Our motto is "paint a smile", and that determins our mission and that is to make the clients satisfied and to bring all of the products closer to them.
  114.  
  115. </div>
  116. <div id="tab5" class="tabs">
  117.     <span>Contact us:<br>
  118.            Email: <a style="color: blue">hypermarket@gmail.com</a> <br>
  119.             Tel: 078/555-666
  120.     </span>
  121.  
  122. </div>
  123.     </div>
  124. <script>
  125. function  home() {
  126.     $("#tab1").show();
  127.     $("#tab2").hide();
  128.     $("#tab3").hide();
  129.     $("#tab4").hide();
  130.     $("#tab5").hide();
  131.  
  132. }
  133. </script>
  134. </body>
  135. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement