Login   Register  
Icontem

File: simple_example.html

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Arturs Sosins  >  Image Selector  >  simple_example.html  >  Download  
File: simple_example.html
Role: Example script
Content type: text/plain
Description: Simple example
Class: Image Selector
Preview images defined in select input options
Author: By
Last change:
Date: 2011-11-26 04:40
Size: 1,806 bytes
 

Contents

Class file image Download
<!--
/*************************************************************
 * This script is developed by Arturs Sosins aka ar2rsawseen, http://webcodingeasy.com
 * Feel free to distribute and modify code, but keep reference to its creator
 *
 * Image Selector class creates an image selector input with image preview based on select element. 
 * Images can be changed using select element itself or by clicking on image. 
 * Additionally this class provides API to select first, last, next or previous images or an image with specific index. 
 * It also can regenerate preview images for dynamical input manipulations.
 *
 * For more information, examples and online documentation visit: 
 * http://webcodingeasy.com/JS-classes/Input-for-selecting-images-with-preview
**************************************************************/
-->
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p>Click on image to change it</p>
<p><select name='image' id='images'>
<option value='http://aux3.iconpedia.net/uploads/677166248.png'>Facebook</option>
<option value='http://w3mag.com/wp-content/uploads/2009/08/Twitter-256x256.jpg'>Twitter</option>
<option value='http://www.gofor.lv/images/app_icons/iPhone/Draugiem_icon.jpg'>Draugiem</option>
<option value='http://mediamemo.allthingsd.com/files/2009/03/redditguy.jpg'>Reddit</option>
</select></p>
<p><input type='button' value='Get value' onclick='alert(document.getElementById("images").value);'/></p>
<script type="text/javascript" src="./image_selector.packed.js" ></script>
<script type="text/javascript">
var imgs = new image_selector("images",{
	//width of images
	width: 100,
	//height of images
	height: 100,
	//change image on click
	changeOnClick: true,
	//hide original input
	hideInput: true,
});
</script>
</body>
</html>