Skip to content

Instantly share code, notes, and snippets.

@xyqfer
Created September 28, 2013 07:15
Show Gist options
  • Save xyqfer/6739438 to your computer and use it in GitHub Desktop.
Save xyqfer/6739438 to your computer and use it in GitHub Desktop.
CSS3 浏览器标识
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