Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

.screen-shake {

    animation: shake 0.25s cubic-bezier(.36,.07,.19,.97) both;

}

@keyframes shake {

    10%, 90% { transform: translate3d(-1px, 0, 0); }

    20%, 80% { transform: translate3d(2px, 1px, 0); }

    30%, 50%, 70% { transform: translate3d(-3px, -2px, 0); }

    40%, 60% { transform: translate3d(3px, 2px, 0); }

}