time
How to work with time? Take a look into the console on the upper right of this window.
sketch.js
// getting started with p5js
function setup(){
// executed once
var canvas = createCanvas(100,100);
canvas.parent('sketch');
text("just look into\nthe console", 10,10);
var dt = new Date(); // this gets the date object
var hour = dt.getHours(); // now get the hour
var minute = dt.getMinutes(); // now get the minute
// log all this
console.log("The hour is %s", hour);
console.log("The minute is %s", minute);
// take a look into the Web and search for
// Javascript Date Object
}
function draw(){
// executed all the time
}
index.html
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>{page.title}</title>
<meta name="description" content="something">
<meta name="author" content="me">
</head>
<body>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.17/p5.min.js"></script>
<script type="text/javascript" src="sketch.js"></script>
<div id="sketch"></div>
</body>
</html>