This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.no-flick{-webkit-transform:translate3d(0,0,0);} // put this class (or extend placeholder) to anywhere you don't want to flicker during a transform | |
.animation { | |
-webkit-backface-visibility: hidden; //will solve flickering on animated layers | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Word searching | |
1. | |
SELECT * FROM TABLE WHERE MATCH (`field`) AGAINST ('Keyword') | |
(Fastest) | |
2. | |
NewerOlder