Skip to content

Commit

Permalink
Change transition timing function to ease-in-out.
Browse files Browse the repository at this point in the history
  • Loading branch information
cnjsstong committed Jan 1, 2014
1 parent d3f35f7 commit a422a80
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion angular-panorama.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/css/angular-panorama.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ must be ul/li
*/
.ng-panorama-container {
overflow: hidden;
transition: background-position 0.2s linear;
transition: background-position 0.2s ease-in-out;
background-size: auto 100%;
}

Expand All @@ -31,9 +31,9 @@ ul.ng-panorama-slides > li {
}

.ng-panorama-animate {
-webkit-transition: -webkit-transform .1s ease-out;
-moz-transition: -moz-transform .1s ease-out;
transition: transform .1s ease-out;
-webkit-transition: -webkit-transform .1s ease-in-out;
-moz-transition: -moz-transform .1s ease-in-out;
transition: transform .1s ease-in-out;
}

.ng-panorama-noanimate {
Expand Down

0 comments on commit a422a80

Please sign in to comment.