Advertisement
Mixtab

Untitled

Oct 23rd, 2018
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2. <head>
  3.   <title>Form Validation</title>
  4.   <script type="text/javascript">
  5.     var thisTime = new Date(2018, 02, 03, 03, 15, 28, 00); //defined time
  6.     //var thisTime = new Date();
  7.     var timeStr = thisTime.toLocaleString(); //time for html use
  8.     var thisHour = thisTime.getHours(); //separate hour html element
  9.     var thisMonth = thisTime.getMonth(); //separate Month html element
  10.     var mapNum = (2*thisMonth+thisHour)%24; //formula for Map Calculations
  11.     var ImgStr = '<img src="sd_sky'+mapNum+'">' //Self navagation for proper sky image
  12.     var h = document.getElementById("planisphere");
  13.    
  14.     document.getElementById('timestamp').innerHTML = timeStr;
  15.     h.insertAdjacentHTML("afterbegin", imgStr); //insert image into page
  16. </html>
  17. </head>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement