Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         $(document).ready(function () {
  2.             $('#sidebarCollapse').on('click', function () {
  3.                 $('#sidebar').toggleClass('active');
  4.                 $(this).toggleClass('active');
  5.             });
  6.             $("#hello-message").fadeOut(2000, function() {
  7.                 var date = new Date()
  8.                 var hours = date.getHours()
  9.                 if (hours <= 6 && hours < 12) {
  10.                     $(this).html('<span class="text-warning"><i class="fa fa-sun-o" aria-hidden="true"></i> <?php echo $lang['good-morning'] ?></span>');
  11.                 } else if (hours <= 12 && hours < 18) {
  12.                     $(this).html('<span class="text-warning"><i class="fa fa-sun-o" aria-hidden="true"></i> <?php echo $lang['good-afternoon'] ?></span>');
  13.                 } else if (hours <= 18 && hours < 22) {
  14.                     $(this).html('<span class="text-primary"><i class="fa fa-moon-o" aria-hidden="true"></i> <?php echo $lang['good-evening'] ?></span>');
  15.                 } else {
  16.                     $(this).html('<span class="text-primary"><i class="fa fa-moon-o" aria-hidden="true"></i> <?php echo $lang['good-night'] ?></span>');
  17.                 }
  18.             }).fadeIn(2000);            
  19.         });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement