Safari animation glitches - white flashes

Discussion in 'HTML & Website Design' started by brotsky, Dec 3, 2012.

  1. #1
    brotsky, Dec 3, 2012 IP
  2. brotsky

    brotsky Member

    Messages:
    53
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #2
    I was able to fix my issue! The issue had to do with using 3d and 2d elements together (the second floor as a text element that is using a matrix3d perspective).

    I edited my CSS from:

    html,
    button,
    input,
    select,
    textarea {
    color: #d7d7d0;
    -webkit-perspective: 800;
    perspective: 800;
    -webkit-transform: transform;
    }

    to

    html,
    button,
    input,
    select,
    textarea {
    color: #d7d7d0;
    }

    This fixed the issue on Safari and iOS and the matrix3d perspective remained the same.
     
    brotsky, Dec 4, 2012 IP