Showing posts with label html. Show all posts
Showing posts with label html. Show all posts

Wednesday, 1 September 2010

10 Jaw Dropping HTML5 and Javascript Effects

with 0 comments
hey guys i am checking for beautiful jquery effects and i found somethigh more interesting that i want  to share it  with you.

Introduction

Alright, HTML5 has been released for quite a while now, and its capabilities never cease to amaze me. Here, I have got 10 more HTML and Javascript demonstrations that show you what they can do. Back to few years ago, implementation of these kind of animations are simply impossible and only can be done with Flash, but now, look at them, impressive animations and effects!

  • Breathing Galaxies
    Breathing Galaxies
    Hypotrochoid with dynamically changing color and diameter. Use the keyboard to change shapes mid-stream, or move the mouse to create a new shape.
  • Noise Field
    Noise Field
    Particle trails via Perlin noise. Move mouse to change particle motion. Click to randomize parameters.
  • Keylight
    Keylight
    A playhead travels between keys which resonate in different sounds depending on where they are placed.
  • Swirling Tentacles
    Swirling Tentacles
    Pulsing 3d wires with color cycling and camera tweening, in 1k of JavaScript.
  • FlowerPower
    FlowerPower
    Another experiment inspired by nature - simple drawing tool with flowers as brushes using bezier curves.
  • Blob
    Blob
    A soft blob that can be thrown around the screen so that it bounces against the browser window. The blob can also be split (double click) into many blobs, the smaller blobs will merge into a single bigger blob if they collide.
  • Rotating Spiral
    Rotating Spiral
    You are getting sleepy, very sleepy.... A resolution independent rotating spiral – simple, but visually compelling. Click to start, stop, and reverse the rotation.
  • Magnetic
    Magnetic
    Magnetic points are used to control a flow of particles. If there are many particles orbiting a magnet, it will radiate color and increase in size.
  • Trail
    Trail
    Colorful particles follow and rotate around the mouse position to generate an organic trail which then fades out slowly.
  • Graph Layout
    Graph Layout
    An interactive force-directed graph layout.
thanks to queness for this information
read more "10 Jaw Dropping HTML5 and Javascript Effects"

Monday, 13 July 2009

нσω тσ α∂∂ α вα¢кgяσυη∂ ѕσυη∂ тσ уσυя ωєв ραgє

with 0 comments

The WAY to add a background sound to your web page is by using the <embed> tag along with its src, autostart, autoplay and hidden attributes. The <embed> tag is a non-standard tag but it is widely supported by most browsers, what this means is that your <embed> tag will not validate when you check your web page to see if it�s valid. The <embed> tag allows you to embed music, videos and other kinds of multimedia in your web page. The <embed> tag also requires an end tag.

The src attribute, which is a required attribute that provides an absolute or relative link to the sound clip that will be played as the background sound on your web page.

We will also need the autostart and autoplay attributes each with the value of true. These two attributes will make your sound clip play automatically. Both attributes are exactly the same just used by different browsers.

We will also need the hidden attribute with the value of true, which will hide the sound clips control panel.

Now let me show you how to code in the <embed> tag and its attributes.


<html>
<head>
<title>Welcome To HTML & XHTML</title>
</head>
<body>

<p>
<embed src="music_sample.mp3" autostart="true" autoplay="true" hidden="true"> </embed>
</p>

</body>
</html>
read more "нσω тσ α∂∂ α вα¢кgяσυη∂ ѕσυη∂ тσ уσυя ωєв ραgє"