迷茫2017-04-17 11:32:29
{
width: 150px;
height: 150px;
margin: 20% auto;
background-color: white;
background-image: repeating-linear-gradient(to right, #aaa 5%, #eee 10%, #ccc 15%);
box-shadow: 5px 5px 2px #eee;
border-radius: 5px;
}
效果:
repeating-linear-gradient(to right, #aaa 5%, #eee 10%, #ccc 15%);
最主要是這句,重複的線性漸變,第一個參數向右,後面三個是顏色漸變點和位置,比如#aaa 5%就是從5%的地方開始漸變,而5%以前就是純的#aaa的顏色,後面兩個同理,然後重複這個漸層。