Home | History | Annotate | Download | only in parse-only

Lines Matching refs:opacity

613 var	exclude = /z-?index|font-?weight|opacity|zoom|line-?height/i,
784 // We need to handle opacity special in IE
785 if ( name == "opacity" && !jQuery.support.opacity ) {
786 ret = jQuery.attr( style, "opacity" );
813 // We should always get a number back from opacity
814 if ( name == "opacity" && ret == "" )
1039 // IE uses filters for opacity
1040 if ( !jQuery.support.opacity && name == "opacity" ) {
1042 // IE has trouble with opacity if it does not have layout
1046 // Set the alpha filter to set the opacity
1048 (parseInt( value ) + '' == "NaN" ? "" : "alpha(opacity=" + value * 100 + ")");
1051 return elem.filter && elem.filter.indexOf("opacity=") >= 0 ?
1052 (parseFloat( elem.filter.match(/opacity=([^)]*)/)[1] ) / 100) + '':
3122 div.innerHTML = ' <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';
3157 // Make sure that element opacity exists
3159 opacity: a.style.opacity === "0.5",
3772 // opacity animations
3773 [ "opacity" ]
3862 return this.animate({opacity: to}, speed, callback);
3958 fadeIn: { opacity: "show" },
3959 fadeOut: { opacity: "hide" }
4160 opacity: function(fx){
4161 jQuery.attr(fx.elem.style, "opacity", fx.now);