html - 這種圖形如何用css3寫
問題描述

問題解答
回答1:css3里面有個(gè)名為倒角的干活
回答2:<!DOCTYPE html><html lang='en'><head> <meta charset='UTF-8'> <title>Document</title></head><body><style type='text/css'> *,body{ margin: 0; padding: 0; background: #fff; border: none; } .bg{width: 500px; height: 500px; background: rgba(253,181,43,1); padding: 12px; } .bg .write_box{ width: 500px; height: 250px; position: relative;background: #fff; overflow: hidden; } .bg .write_box .round{ width: 40px; height: 40px; background: rgba(253,181,43,1); position:absolute; border-radius: 100% } .bg .write_box .lft{ left: -20px; } .bg .write_box .rgh{ right: -20px; } .bg .write_box .botm{ bottom: -20px; } .bg .write_box .tp{ top: -20px; }</style> <p class='bg'> <p class='write_box'> <p class='round lft tp'></p> <p class='round rgh tp'></p> <p class='round lft botm'></p> <p class='round rgh botm'></p> </p> <p class='write_box'> <p class='round lft tp'></p> <p class='round rgh tp'></p> <p class='round lft botm'></p> <p class='round rgh botm'></p> </p> </p></body></html>回答3:
簡單來講,你需要通過 圓形p元素的border-radius 和 包裹的overflow來實(shí)現(xiàn),至于更深的橘色應(yīng)該是陰影
回答4:真是不好意思,我一直用的firefox,沒想到它對(duì)于radial-gradient和chrome還是有不同的。也是我自己理解不夠。
我又修改了下面的鏈接。
===============
使用了CSS3變量來控制半徑大小,暫時(shí)想不到更簡單的辦法了在不向下不兼容的路上越走越遠(yuǎn)...
DEMO-New
===================================
詳細(xì)請(qǐng)看DEMO,純CSS3實(shí)現(xiàn),沒有添加額外標(biāo)記,雖然我感覺可擴(kuò)展性不高,不過繼續(xù)改善應(yīng)該還是可以投入生產(chǎn)中的。
CSS3的魔法還有很多,不斷地深入思考,會(huì)想到很多有趣的功能。正如《CSS揭秘》作者那樣。
DEMO
相關(guān)文章:
1. 我在導(dǎo)入模板資源時(shí)遇到無法顯示的問題,請(qǐng)老師解答下2. 運(yùn)行python程序時(shí)出現(xiàn)“應(yīng)用程序發(fā)生異常”的內(nèi)存錯(cuò)誤?3. thinkphp6使用驗(yàn)證器 信息如何輸出到前端頁面4. javascript - h5微信中怎么禁止橫屏5. PHPExcel表格導(dǎo)入數(shù)據(jù)庫怎么導(dǎo)入6. python - sqlalchemy更新數(shù)據(jù)報(bào)錯(cuò)7. macos - 無法source activate python278. javascript - ajax請(qǐng)求不返回,關(guān)閉頁面時(shí)才返回。。。9. html5 - 前端面試碰到了一個(gè)緩存數(shù)據(jù)的問題,來論壇上請(qǐng)教一下10. 預(yù)訂金和尾款分別支付

網(wǎng)公網(wǎng)安備