0
我已經創建了顏色的簡單的CSS酒吧停止使用如下:CSS多重漸變顏色停止
#testing{
width:100%;
height:40px;
background-image: -webkit-linear-gradient(left, #034a96 80%, #eab92d 50%);
background-image: -moz-linear-gradient(top, #034a96 50%, #eab92d 51%);
background-image: -ms-linear-gradient(top, #034a96 50%, #eab92d 51%);
background-image: -o-linear-gradient(top, #034a96 50%, #eab92d 51%);
background-image: linear-gradient(top, #034a96 50%, #eab92d 51%);
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
}
我想什麼做的是酒吧的前80%是有梯度從顏色#034a96到#0663c7從頂部開始,然後只是該顏色的50%。然後在另外51%的情況下,我從頂部用#eab92d到#c79810創建了另一個梯度。什麼我問的是,如果有可能有多個梯度與對方如:
background-image: -webkit-linear-gradient(left, top #034a96 to #0663c7 50%, top #eab92d to #c79810 51%);
或者類似的規定。我希望我對一切都很清楚。在此先感謝
非常感謝你的幫助!鏈接是完美的! – user481610
http://css3please.com/稍微有點近了。 – moettinger