I have a div with this css class:
.pos { -webkit-filter: brightness(0.5); -moz-filter: britghtness(0.5); -o-filter: brightness(0.5); -ms-filt
I found the solution here: http://indiegamr.com/ios6-html-hardware-acceleration-changes-and-how-to-fix-them/
It's about adding these proprieties:
-webkit-transform: translateZ(0); -webkit-perspective: 1000; -webkit-backface-visibility: hidden;
Hope this will help!