Last active
December 23, 2016 05:33
-
-
Save vinayakkulkarni/c13ede2b13f273daafbb26343cb4068b to your computer and use it in GitHub Desktop.
Greet according to the time. Set default as afternoon.
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
<h1 class="gradient-text"> | |
<span>Good afternoon.</span><br> | |
How can we help you today? | |
</h1> |
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
var date = new Date(); | |
if (date.getHours() < 12) { | |
$('.gradient-text span').html('Good Morning') | |
} | |
if (date.getHours() >= 18) { | |
$('.gradient-text span').html('Good Evening.') | |
} | |
if (date.getHours() >= 23) { | |
$('.gradient-text span').html('Good Evening.') | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment