Created
October 8, 2018 05:55
-
-
Save shawnfromportland/3d4dc4628f116d46fe95f758de4dec26 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Optional: load a random pic from different sets corresponding to times of day | |
$dayPics = | |
[ | |
'day1.png', | |
'day2.png', | |
'day3.png', | |
'day4.png', | |
'day5.png', | |
'day6.png' | |
]; | |
$sunsetPics = | |
[ | |
'sunset1.png', | |
'sunset2.png', | |
'sunset3.png', | |
'sunset4.png' | |
]; | |
$sunrisePics = | |
[ | |
'dawn1.png', | |
'dawn2.png', | |
]; | |
$nightPics = | |
[ | |
'night1.png', | |
'night2.png', | |
'night3.png', | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment