Ich habe ein sehr einfaches Plugin geschrieben, mit dem ich 0xffccaa
Format für css-Farben anstelle von '#ffccaa'
(hauptsächlich, um Anführungszeichen zu vermeiden - aber auch, um eine einfache Änderung der Farben zu ermöglichen, indem man sie einfach als Ganzzahl hinzufügt).
Ich implementiere als $().xcss({})
, würde aber lieber nur die $().css({})
.
Wie kann ich die Funktionalität der $.fn.css
Funktion, und gibt es irgendwelche Fallstricke, auf die ich achten muss?
Ich denke, ich werde das Gleiche auch für $.animate
.
Fiedel: http://jsfiddle.net/hB4R8/
// pugin wrapper
(function($){ $.fn.xcss = function(opts){
// loop through css color properties
$.each(['background', 'backgroundColor','background-color', 'color', 'borderColor','border-color'],function(i,v){
// if set as number (will be integer - not hex at this point)
// convert the value to `#ffccaa` format (adds padding if needed)
if(typeof opts[v] === 'number')
opts[v] = ('00000'+opts[v].toString(16)).replace(/.*([a-f\d]{6})$/,'#$1')
})
// run css funciton with modified options
this.css(opts)
// allow chaining
return this
} })(jQuery)
// test the plugin
$('body').xcss({
'background-color': 0xffccFF,
color: 0xccffcc,
border: '3px solid red',
borderColor:0x0ccaa,
padding:50
}).html('<h1>This should be a funny color</h1>')