, css3 har støttet yderligere farve egenskaber som følger og minus;,, rgba farver, hsl farver, hsla farver, uklarhed,,, rgba, står for, røde, grønne, blå alpha,. det er en udvidelse af css2, alpha angiver uklarhed i en farve, og parameter er en numerisk mellem 0, 0 til 1, 0.en prøve syntaks af rgba som vist nedenfor −,d1 (baggrund farve: rgba (255 0, 0 0, 5)}d2 (baggrund farve: rgba (0, 2, 0, 0, 5)}d3 (baggrund farve: rgba (0, 0, 255 0, 5);), hsl, står for store, mætning, lethed,. her er en stor grad af farve, mætning og lethed, er procent - værdier på mellem 0 og 100%.en prøve syntaks af hsl som vist nedenfor −,g1 (baggrund farve: hsl (120, 100%, 50%);}g2 {baggrund farve: hsl (120, 100%, 75%);}g3 {baggrund farve: hsl (120, 100%, 25%);), hsla, står for store, mætning, lethed og alfa.alfa - værdi angiver den uklarhed, som vist rgba.en prøve syntaks af hsla som vist nedenfor −,g1 (baggrund farve: hsla (120, 100%, 50%, 0, 3)}g2 {baggrund farve: hsla (120, 100%, 75%, 0, 3)}g3 {baggrund farve: hsla (120, 100% 25%, 0, 3)}, uklarhed, er tyndere maling have sort tilføjet for at øge uklarhed.A sample syntax of opacity is as shown below −, #g1 {background-color:rgb(255,0,0);opacity:0.6;} #g2 {background-color:rgb(0,255,0);opacity:0.6;} #g3 {background-color:rgb(0,0,255);opacity:0.6;} ,The following example shows rgba color property, <html> <head> <style> #p1 {background-color:rgba(255,0,0,0.3);} #p2 {background-color:rgba(0,255,0,0.3);} #p3 {background-color:rgba(0,0,255,0.3);} </style> </head> <body> <p>RGBA colors:</p> <p id="p1">Red</p> <p id="p2">Green</p> <p id="p3">Blue</p> </body> </html> ,It will produce the following result −, ,The following example shows HSL color property, <html> <head> <style> #g1 {background-color:hsl(120, 100%, 50%);} #g2 {background-color:hsl(120,100%,75%);} #g3 {background-color:hsl(120,100%,25%);} </style> </head> <body> <p>HSL colors:</p> <p id="g1">Green</p> <p id="g2">Normal Green</p> <p id="g3">Dark Green</p> </body> </html> ,It will produce the following result −, ,The following example shows HSLA color property, <html> <head> <style> #d1 {background-color:hsla(120,100%,50%,0.3);} #d2 {background-color:hsla(120,100%,75%,0.3);} #d3 {background-color:hsla(120,100%,25%,0.3);} </style> </head> <body> <p>HSLA colors:</p> <p id="d1">Less opacity green</p> <p id="d2">Green</p> <p id="d3">Green</p> </body> </html> ,It will produce the following result −, ,The following example shows Opacity property, <html> <head> <style> #m1 {background-color:rgb(255,0,0);opacity:0.6;} #m2 {background-color:rgb(0,255,0);opacity:0.6;} #m3 {background-color:rgb(0,0,255);opacity:0.6;} </style> </head> <body> <p>HSLA colors:</p> <p id="m1"> røde < /p > < p id = "m" > green < /p > < p id = "m" > blå < /p > < /organ > < /html > det giver følgende resultat &minus,,,
css3 farver
Previous:css3 multi - baggrund
Next Page:css3 stigninger