Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS 3-D Transforms

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #39748
    GMB
    Participant

    I’ve recently redone my personal website using Hakim El Hattab’s Meny, but for some reason the 3-D transform is not working in Firefox. Currently all pages get a fallback design for browsers that don’t support 3-D transform effects, though Firefox does. The Meny demo does transform properly in Firefox, so it must be something that I’ve done in revising the CSS for my site, only I can’t figure out what it was. Does anyone have any ideas?

    It’s not a disaster as the fallback design is also quite nice, I’d just like to better understand what’s happening here and get it to function properly, if possible.

    Thanks in advance for any explanations/suggestions.

    #109634
    Mottie
    Member

    Hi Guy!

    It looks like the difference between the demo and the meny.css file is in the .meny-wrapper. Add a “px” to the end of each perspective definition and it should start working.

    .meny-wrapper {
    -webkit-perspective: 800px;
    -moz-perspective: 800px;
    -ms-perspective: 800px;
    -o-perspective: 800px;
    perspective: 800px;

    #109653
    GMB
    Participant

    That did the trick! Many thanks.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.