中文字幕二区_国产精品免费在线观看_黄色网站观看_人人草人人澡_日本真实娇小xxxx

reflection.js

Reflection.js 1.5 allows you to add reflections to images on your webpages. It uses unobtrusive javascript to keep your code clean.

It works in all the major browsers - Internet Explorer 5.5+, Mozilla Firefox 1.5+, Opera 9+ and Safari. On older browsers, it'll degrade and your visitors won't notice a thing. Best of all, it's under 5KB.

Contents

Setting Up

Upload reflection.js and prototype.js and include them into your webpage.

<script type="text/javascript" src="reflection.js"></script>

Using It

To add a reflection just add a class="reflect" to the image. View source to see example.

Example Image

The reflection will automatically fade into the background colour.

If you run a forum, you can modify your templates and add class="reflect" to the avatar HTML code to add reflections.

Customizing Reflections

By default, the reflection will have a height 50% of the original image. Thus the height of an image with a reflection will be 1.5 times the height of the original image. The default opacity of reflections is 50%.

You can combine these two options. To create a 80% height 40% opacity reflection use:

class="reflect rheight80 ropacity40"

Scripting Reflections

If you want tons of flexibility, use scripted reflections. You can make your reflections respond to user actions (e.g. changing the reflection opacity when the image is hovered over) or add reflections to scripts such as Lightbox.

Reflection.add(image, options);

Adds or modifies a reflection to an image using Javascript. If the image is already reflected but the specified opacity or height has changed, the reflection will be changed accordingly.

image should be an image element.

options can contain a value for opacity or height. Both values should be between 0 and 1.

Reflection.add(document.getElementById("ohboy"), { height: 3/4, opacity: 2/3 });

Reflection.remove(image);

Removes the reflection from an image.

Reflection.remove(document.getElementById("orly"));
Reflection.defaultHeight = height;
Reflection.defaultOpacity = opacity;

Changes the default height and opacity of reflections. The default value for both settings is 0.5.

Known Issues

Attention!

Improvements

If you've made any changes or bug fixes to reflection.js, feel free to publish and distribute them. If you contact me through my blog I can also include the changes in the main reflection.js download.

Supported Browsers

Changelog

Version 1.5

Version 1.0

Version 0.4

Version 0.3

Version 0.2

Version 0.1

Credits

Original idea and inspiration for the script came from Romain Guy's Crystal CD Case. Sitharus made it all work in Safari. Andreas Linde helped make the script work better with CSS styles. Tralala at vBulletin.org did a great job of finding bugs with reflection in Safari and fixed them! Kudos!

A big thank you to everybody who has left their thoughts and comments. Your feedback has been invaluable.

cow.neondragon.net