virtual-bookshelf
virtual-bookshelf copied to clipboard
Safari support
Hi Petar,
great project, love the bookshelf idea.
Just wanted to let you know that the bookshelf ist not displayed correctly on Safari (Safari 15.4, macOS 12.3.1).
Here's a screenshot to illustrate the problem:
Here's how the same bookshelf is rendered on Chrome:
Hey, thanks for reporting that and giving examples. Will investigate.
One option is to use translate3d
.book {
transform: translate3d(0,0,0);
}
.book:hover {
transform: rotateX(-25deg) rotateY(-40deg) rotateZ(-15deg) translate3d(150px, 60px, 300px);
}
An alternative rather than a fix, though I quite like the effect.