
Is it possible at all to achieve this effect with CSS3 (and maybe jQuery)? I tried the usual 'slideDown' effect but its not even close to this. Any ideas?
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
You could do it with CSS transitions.. The concept is to have an element with This way when you transition the height of the paper-holder element from 0 to the height of the paper it will seem like the paper is sliding out. Demo at http://jsfiddle.net/9FfKZ/1/ Update An improvement to make the print steps more obvious, would be to use the Demo at http://jsfiddle.net/9FfKZ/4/ |
||||
|
|
|
My thought one this is to have 3 different elements. Forget the paper for now. just consider the printer slot. I would make it into two separate images. The top have and the bottom half. The two images should meet where you want the paper to feed from. Position the two images absolutely so they look joined as normal. The trick here will be in the Now, you will want to create a div that represents the paper. Give that div a z-index: somewhere in between the top and bottom graphics, so give it a Working Demo: http://jsfiddle.net/XzVA9/2/ HTML
CSS
JS
|
|||||||||||||||
|
|
Use setInterval in javascript to set positions every x milliseconds, to create a jittery effect. Make sure that you have the appropriate CSS to make this work, ie. position absolute / relative on the right elements
|
|||||||||
|