Any ideas how to achieve an effect similar to this?
|
closed as not a real question by Michael Petrotta, Bakudan, bluefeet, AaronS, Graviton Feb 11 '12 at 5:15
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.
|
Yes, use the
|
|||
|
|
|
In hindsight, that was a pretty stupid answer. So I will answer again with an actual example of a way to make what's in that flash file in HTML5. If you can fully understand how this works, making the same thing in flash should be no sweat. But also consider that the demo I made unintentionally runs faster and more stable than the flash demo, so you might consider using HTML5 for your next project. The example I made is here, and without further ado, I will break it down line by line, starting with the HTML:
This creates a Now the JavaScript:
This gets the drawing context, which provides the methods that allow you to draw on the canvas. Currently the only parameter is Note: In every browser I've ever tested, you don't have to use the
These variables are used to track the mouse position, whether the image has been loaded, the trail, and the size of the image.
This block of code creates an image, sets its source to a reliable server holding the Me Gusta Picture, and instead of drawing the picture
This event function (a special type of function that runs on an event) is bound to the canvas, and when it runs, it grabs the mouse's position from the
This is where the rest is handled. The function is defined and then run immediately after, and after the function completes, it runs itself again with a delay of
It now checks if the image is loaded by requesting the Since the array starts out empty, it checks if a boolean expression As for how I hid the cursor and got the dotted border, that's CSS, or Cascading Style Sheets. The language that allows for precise control of the styling of a page and what give this very site its pazzaz. I hope this helps more than the previous answer I gave, which is below this line:
in javascript, there are several ways to go about making an image appear when you hover over it, one nice, easy example is: HTML:
<div id="img">
i am a placeholder
</div>
Javascript:
var img = document.getElementById('img')
var Main = {
IN: function() {
img.innerHTML = '<img src="img.jpg"></img>'
},
OUT: function() {
img.innerHTML = 'I am a placeholder'
}
}
//I used an object to hold the functions and keep them uniform
img.onmouseover = Main.IN
img.onmouseout = Main.OUT
//these events call the function
|
||||
|
|