Created
September 28, 2013 07:15
-
-
Save xyqfer/6739438 to your computer and use it in GitHub Desktop.
CSS3 浏览器标识
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
webkitProperty | |
MozProperty | |
msProperty | |
OProperty | |
property | |
myself.style.webkitTransform = ""; | |
myself.style.MozTransform = ""; | |
myself.style.msTransform = ""; | |
myself.style.OTransform = ""; | |
myself.style.transform = ""; | |
$(myself).css({ | |
"webkitTransform":"", | |
"MozTransform":"", | |
"msTransform":"", | |
"OTransform":"", | |
"transform":"" | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment