0
我正在嘗試使用以下css將反射添加到div。爲div反射提供更多樣式
CSS ::
div.reflection
{
-webkit-transform: scaleY(-1);
-moz-transform: scaleY(-1);
-o-transform: scaleY(-1);
-ms-transform: scaleY(-1);
transform: scaleY(-1);
opacity:0.6;
background-color: red;
position:absolute;
top:82%;
height:30%;
width:100%;
}
反射來,但其較低的不透明度值只是翻轉圖像。我如何能增加更多的風格體現,我想給反映如下圖所示PIC ..
但我的CSS我得到這個,
我覺得你以後稱爲3D的技術轉換。網絡上有這麼多的例子,我不知道從哪裏開始!只需搜索「css 3d變換」與谷歌圖像。 –