jquery-cssHooks
jquery-cssHooks copied to clipboard
Collection of cssHooks that work with jQuery 1.4.3+
Added method to determine if 3d Transforms are supported. Added a hook to replace 3d Transforms with their 2d counterparts if the former are not supported.
This adds cssHooks for clip and the individual sides (clip-top, clip-right, clip-bottom, clip-left). Accessing the individual clip sides is "non-standard", but I added them anyway because: 1. Retrieving them gets...
#### Hey, maintainer(s) of brandonaaron/jquery-cssHooks! We at [VersionEye](https://www.versioneye.com/signup?promo_code=BOWER) are working hard to keep up the quality of the bower's registry. We just finished our initial analysis of the quality of...
Little test case: http://hellobold.com/project-inquiry/ - Safari 5.1 / Chrome 12 - must set boxShadowBlur to 200px to match 50px of blur set in CSS (Firefox 3.6 is fine, blur set...
according to this: http://dev.opera.com/forums/topic/651612 So there is no need to "(divStyle.OBorderRadius === ''? 'OBorderRadius' :" in borderradius.js
Hi, First of all, thanks for putting this collection of jQuery css hooks together! I found that the individual boxShadow getters and setters (e.g., boxShadowColor, boxShadowBlur), were not working properly...
inside color.js css hook: if (!value.alpha) { // returns true if value.alpha == 0 value.alpha = 1; // making it not transparent. } should be if (!value.hasOwnProperty('alpha')) { value.alpha =...
see testcase by chris coyier: http://jsbin.com/usalu5/edit the textShadowColor hook in color.js overwrites the textShadowColor hook defined in textshadow.js and apparently the color.js one doesnt work? Regardless... there is some conflict...
Browsers frustratingly deliver all sorts of different results for color properties in CSS. Webkit returns `rgb/a()` values no matter what the CSS specifies. `red`, `#f00`, they all come back as...