Example #1
0
 public void RunIntroAnimations()
 {
     if (!_appeared)
     {
         AnimationUtilities.FeatherIn(_title1, _body1, _title2, _body2);
         _appeared = true;
     }
 }
Example #2
0
 public void RunIntroAnimations()
 {
     if (!_appeared)
     {
         AnimationUtilities.FeatherIn(_twitterWhiteLogo, _twitterText,
                                      _linkedinWhiteLogo, _linkedinText, _emailLogo, _emailText, _githubLogo, _githubText);
         _appeared = true;
     }
 }
Example #3
0
        public async void RunIntroAnimations()
        {
            if (!appeared)
            {
                AnimationUtilities.FeatherIn(_nameLabel, _bodyLabel, _hireButton);
                await Task.Delay(1000);

                AnimationUtilities.RollIn(_bryanImage);
                appeared = true;
            }
        }