I ran accross this example in the image below that is done in Flash and I was wondering if a similar affect of having a transparent box at the bottom of an image with text o
You can simply create an overlay by CSS only over any image.
.container{ width:250px; height:250px; } .container img{width:100%;height:100%} .container::before{ content:''; position:absolute; left:0; top:0; background:#fff; z-index:9999; width:100%; height:100%; opacity:0; }