Animation as shown in the link

Checking out the source code on the page I see the cards are svg and are run by css transitions like this: .svg-cards { display: inline-block; position: absolute; width: 20vmin; overflow: hidden; min-width: 100px; border-radius: 15px; box-shadow: -30px -30px 40px 15px rgba(0, 0, 0, 0.9); line-height: 0; } .svg-cards.rotation { box-shadow: -1px 1px 6px rgba(0, … Read more

Show page name in browser

Your title is being set by something in your theme or a plugin attaching to the wp_title filter. You can further filter this value or override it entirely by using the same hook and a different priority that executes later. // add a filter at priority 999 so it will presumably run last add_filter( ‘wp_title’, … Read more