Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Dissapearing pictures (Firefox / Mac OSX) Re: Dissapearing pictures (Firefox / Mac OSX)

#116898
twincy
Participant

they dissapear for me too (Firefox / win7.)

look at a page i just launched [www.texmachine.be](http://www.texmachine.be/gallery.php)
with a similar idea.
only difference is they transform reversed (straight-to-tilted on hover instead).
i cannot make my ones go away with the fast hovering in any browser on my system (chrome, opera, ie10, safari for win and FF).

i did this for the hovering (here omitting vendor prefixes for readability):


.gallery-wrap img {
border: 3px solid white;
border-bottom: 10px solid white;
box-shadow: 3px 3px 3px black;
margin: 10px;
transition: all .20s ease-in-out;
transform: scale(.8);
}
.gallery-wrap img:hover {
box-shadow: 8px 8px 7px #222;
transform: scale(1.4);
transform: rotate(20deg);

props to chris for having an ‘AnsweringForumQuestions’-Screencast, btw ;)