我正在尝试使用以下 css 向 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%;
}
反射即将到来,但它只是以较低的不透明度值翻转图像。如何为反射添加更多样式,我想如下图所示进行反射。
但是用我的css我得到了这个,