Simple landing page for my website

now.js 503B

12345678910111213141516171819202122
  1. 'use strict';
  2. /**
  3. * @ngdoc function
  4. * @name landingPageApp.controller:MainCtrl
  5. * @description
  6. * # MainCtrl
  7. * Controller of the landingPageApp
  8. */
  9. angular.module('landingPageApp')
  10. .controller('NowCtrl', ['$window', '$scope', '$timeout', '$mixpanel', function ($window, $scope, $timeout, $mixpanel) {
  11. // Mixpanel Analytics Tracking
  12. $mixpanel.track('Now view');
  13. $scope.textAnimationStart = false;
  14. $timeout(function(){
  15. $scope.textAnimationStart = true;
  16. }, 1000);
  17. }]);