diff --git a/css/animations.css b/css/animations.css index 9af3400..55c1001 100644 --- a/css/animations.css +++ b/css/animations.css @@ -97,18 +97,34 @@ -webkit-animation: moveToLeft .7s ease-in-out both; animation: moveToLeft .7s ease-in-out both; } +.pt-page-moveFromLeftEasing { + -webkit-animation: moveFromLeft .7s ease-in-out both; + animation: moveFromLeft .7s ease-in-out both; +} .pt-page-moveToRightEasing { -webkit-animation: moveToRight .7s ease-in-out both; animation: moveToRight .7s ease-in-out both; } +.pt-page-moveFromRightEasing { + -webkit-animation: moveFromRight .7s ease-in-out both; + animation: moveFromRight .7s ease-in-out both; +} .pt-page-moveToTopEasing { -webkit-animation: moveToTop .7s ease-in-out both; animation: moveToTop .7s ease-in-out both; } +.pt-page-moveFromTopEasing { + -webkit-animation: moveFromTop .7s ease-in-out both; + animation: moveFromTop .7s ease-in-out both; +} .pt-page-moveToBottomEasing { -webkit-animation: moveToBottom .7s ease-in-out both; animation: moveToBottom .7s ease-in-out both; } +.pt-page-moveFromBottomEasing { + -webkit-animation: moveFromBottom .7s ease-in-out both; + animation: moveFromBottom .7s ease-in-out both; +} /********************************* keyframes **************************************/ diff --git a/index.html b/index.html index 643560d..428f413 100755 --- a/index.html +++ b/index.html @@ -55,6 +55,10 @@