Jump to content

MediaBrowser old school backdrop zoom effect


chef

Recommended Posts

chef

Remember this:  ;)

body>div.backdropContainer>div {
    transform-style: preserve-3d;
    perspective: 550px;
    animation: zoom-bg 75s forwards linear;
}

@keyframes zoom-bg {
    from {
        transform: scale(1);
    }
    
    to {
        transform: scale(1.3);
    }
}

Probably needs some fine tuning on targeting specifics to get just the detailsPage, but it brings me back. 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...