Played a bit with Adobe After Effects and I'm still locking for some scratchy sound which would fit the images?

BE CREATIVE

Twitter Mike Bite

Twitter Updates

    follow me on Twitter
    « The Consequences of Creativity | Main | More beautiful pictures - Trick 4 »

    Transparent Images CSS 3

    Opacity CSSTo change the opacity of an image you can use this CSS 3 Code:

    <img src="http://mikebite.com/testimage_01" alt="TestImage" style="opacity:0.5;filter: alpha(opacity=50) ;" />

    Change more than one image with an anchor tag or create an hover effect:

    #imghover a:hover img { filter: alpha(opacity=50);filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);-moz-opacity: .5;opacity:0.5; }

    affects this HTML

    <div id="imghover">
    <a href="#"><img src="http://mikebite.com/testimage_01" alt="TestImaget" style="width:50px;height:50px" /></a>
    </div>

     

    Same idea with a separate class (makes hover effect even simpler)

    .imageopacity {
    opacity:0.25;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=25)";
    filter:alpha(opacity=25);
    zoom:1
    }

    .imageopacity:hover {
    opacity:1;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=100)";
    filter:alpha(opacity=100)
    }

    affects this HTML

    <img src="testimage_01.jpg" class="imageopacity" alt="TestImageHover" />

    PrintView Printer Friendly Version

    EmailEmail Article to Friend

    Reader Comments

    There are no comments for this journal entry. To create a new comment, use the form below.

    PostPost a New Comment

    Enter your information below to add a new comment.

    My response is on my own website »
    Author Email (optional):
    Author URL (optional):
    Post:
     
    Some HTML allowed: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <code> <em> <i> <strike> <strong>