User Profile

Collapse

Profile Sidebar

Collapse
Dmal
Dmal
Last Activity: Jan 18 '11, 09:47 AM
Joined: Jan 6 '11
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Dmal
    started a topic How to making transitions respond to onclick?

    How to making transitions respond to onclick?

    Ive managed a simple hover transition

    Code:
    <style>
    #trans {
    opacity:100;
    transition: all 1st ease-in-out;
    }
    #trans:hover {
    opacity:0;
    }
    </style>

    but i would like to make it clickable instead of hover. The only example i found that illustrates clickable transitions is (http://css3.bradshawenterprises.com):

    ...
    See more | Go to post

  • Dmal
    started a topic Javascript and Embedded Video

    Javascript and Embedded Video

    I wrote a script that allows me to start a video when an image is clicked. It works fine for html5 video but not embedded video (VLC+Webm). How do i make my script recognize the embedded video?

    Testing this in FF3.6 and FF4b9.


    Code:
    <head>
    <style>
    #movie {}
    #img {}
    </style>
    </head>
    <body>
    
    <embed type="application/x-vlc-plugin"
    ...
    See more | Go to post

  • Dmal
    started a topic Back button link delay

    Back button link delay

    Im trying to set up an image link that has a delay before it sends the user back one step in its history. Ive found a number of examples, most using setTimeout, but there doesnt appear to be any way to merge this function with history.go(-1) within the confines of a link. So far this seems to be the closest example i have found, though it just gives me a "page not found 'javascript();' in FF.

    Code:
    <a href="javascript();"
    ...
    See more | Go to post
No activity results to display
Show More
Working...