Advertisement
Speeedfire

Untitled

Dec 7th, 2015
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.47 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.   <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  5.   <title>Időkép demo</title>
  6.   <style type='text/css'>
  7.     table tbody td {
  8.   width: 64px;
  9.   height: 64px;
  10. }
  11.  
  12. .hideg, .meleg {
  13.   background-size: 64px 64px;
  14. }
  15.  
  16. .hideg {
  17.   background-image: url(https://cdn0.iconfinder.com/data/icons/good-weather-1/96/weather_icons-68-128.png);
  18. }
  19.  
  20. .meleg {
  21.   background-image: url(https://cdn0.iconfinder.com/data/icons/good-weather-1/96/weather_icons-01-128.png);
  22. }
  23.  
  24.   </style>
  25.  
  26.  
  27.  
  28.  
  29. <script type='text/javascript'>//<![CDATA[
  30. window.onload=function(){
  31. var napokHomerseklete = [
  32.  10, -20, 5, 8, 12, 22, 45
  33. ];
  34. var idojarasClass;
  35. var currentElement;
  36.  
  37. for (var i = 0; i < napokHomerseklete.length; i++) {
  38.  if (napokHomerseklete[i] <= 5) {
  39.    idojarasClass = 'hideg';
  40.  } else {
  41.    idojarasClass = 'meleg';
  42.  }
  43.  currentElement =  document.getElementsByTagName("td")[i];
  44.     currentElement.classList.add(idojarasClass);
  45. }
  46.  
  47. }//]]>
  48.  
  49. </script>
  50.  
  51. </head>
  52. <body>
  53.   <div id="idojaras">
  54.   <table>
  55.     <thead>
  56.       <tr>
  57.         <th>H</th>
  58.         <th>K</th>
  59.         <th>Sz</th>
  60.         <th>Cs</th>
  61.         <th>P</th>
  62.         <th>Sz</th>
  63.         <th>V</th>
  64.       </tr>
  65.     </thead>
  66.     <tbody>
  67.       <tr>
  68.         <td></td>
  69.         <td></td>
  70.         <td></td>
  71.         <td></td>
  72.         <td></td>
  73.         <td></td>
  74.         <td></td>
  75.       </tr>
  76.     </tbody>
  77.   </table>
  78. </div>
  79.  
  80.  
  81. </body>
  82.  
  83. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement