Rico JavaScript DHTML






Rico.Corner


Rico.loadModule('Corner');
Rico.onLoad( function() {
   var roundCorners = Rico.Corner.round.bind(Rico.Corner);
   roundCorners('a0',{border: '#ff0000'});
   roundCorners('a',{compact:true, border: '#ff0000'});
   roundCorners('b',{blend:false, border: '#ff0000'});
   roundCorners('c',{blend:false,compact:true, border: '#ff0000'});
   roundCorners('d',{corners:"tl", border: '#ff0000'});
   roundCorners('e',{corners:"br", border: '#ff0000'});
   roundCorners('f',{corners:"top", border: '#ff0000'});
   roundCorners('g',{corners:"bottom", border: '#ff0000'});
   roundCorners('h',{corners:"tl br", border: '#ff0000'});
   roundCorners('i',{corners:"all", color: "transparent", border: '#ff0000'});
   roundCorners('j',{corners:"all", compact:true, color: "transparent", border: '#ff0000'});
});


h1 {
  font-family : Trebuchet MS, Arial, Helvetica, sans-serif;
  font-size: 16pt;
}
span.code2 {
   font-family : Courier;
   font-size   : 11px;
   margin      : 12px;
}
div.cornerSamples {
   width            : 320px;
   margin-top       : 4px;
   background-color : #ffffee;
   font-family      : Arial;
   font-size        : 11px;
   text-align       : left;
}
body, p {
  font-family : Trebuchet MS, Arial, Helvetica, sans-serif;
  font-size   : 11px;
}



Rico.Corner - with option.border='#ff0000'


Rico.Corner.round(element, {border: '#ff0000'});






Rico.Corner.round(element, {compact:true,border: '#ff0000'});




Rico.Corner.round(element, {blend:false,border: '#ff0000'});






Rico.Corner.round(element, {blend:false,compact:true,border: '#ff0000'});




Rico.Corner.round(element, {corners:"tl",border: '#ff0000'});






Rico.Corner.round(element, {corners:"br",border: '#ff0000'});




Rico.Corner.round(element, {corners:"top",border: '#ff0000'});






Rico.Corner.round(element, {corners:"bottom",border: '#ff0000'});




Rico.Corner.round(element, {corners:"tl br",border: '#ff0000'});






Rico.Corner.round(element, {color:"transparent",border: '#ff0000'}




Rico.Corner.round(element, {color:"transparent",compact:true,border: '#ff0000'}