الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .gradient-left-30 { height: 100px; background: red; background: conic-gradient(at left 30%, red, blue, green, yellow); } .gradient-right-30 { height: 100px; background: red; background: conic-gradient(at right 30%, red, blue, green, yellow); } .gradient-left-30-top-50 { height: 100px; background: red; background: conic-gradient(at left 30% top 50%, red, blue, green, yellow); } .gradient-right-20-bottom-40 { height: 100px; background: red; background: conic-gradient(at right 20% bottom 40%, red, blue, green, yellow); } </style> </head> <body> <h1>Conic Gradient Position</h1> <p>background: conic-gradient(at left 30%, red, blue, green, yellow);</p> <div class="gradient-left-30"></div> <p>background: conic-gradient(at right 30%, red, blue, green, yellow);</p> <div class="gradient-right-30"></div> <p>background: conic-gradient(at left 30% top 50%, red, blue, green, yellow);</p> <div class="gradient-left-30-top-50"></div> <p>background: conic-gradient(at right 20% bottom 40%, red, blue, green, yellow);</p> <div class="gradient-right-20-bottom-40"></div> </body> </html>