当前位置: 软件>JavaScript软件
jQuery Color Plugin
本文导语: 这是一款用来处理网页颜色的 jQuery 插件 示例代码: // Create a red Color object: var red = $.Color( 'rgba(255,0,0,1)' ); // using a css string // Create a red Color object, then make orange: var orange = $.Color( '#FF0000' ).green( 153 ); // Get the color halfway between red a...
这是一款用来处理网页颜色的 jQuery 插件
示例代码:
// Create a red Color object: var red = $.Color( 'rgba(255,0,0,1)' ); // using a css string // Create a red Color object, then make orange: var orange = $.Color( '#FF0000' ).green( 153 ); // Get the color halfway between red and blue: var between = $.Color([ 255, 0, 0 ]).transition( "blue", 0.5 );