DIR : /home/kozerus/public_html/pn/uize/site-source/examples/swap-image.html
/home/kozerus/public_html/pn/uize/site-source/examples
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Uize.Widget.Swap.Image | JavaScript Examples | UIZE JavaScript Framework</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="keywords" content="animation widget Uize.Widget.Swap.Image Uize.Widget.Swap.Themes"/>
<meta name="description" content="See some amazing possibilities for image transitions using lightweight JavaScript animation. Play with lots of effect themes, and even make your own."/>
<link rel="alternate" type="application/rss+xml" title="UIZE JavaScript Framework - Latest News" href="http://www.uize.com/latest-news.rss"/>
<link rel="stylesheet" href="../css/page.css"/>
<link rel="stylesheet" href="../css/page.example.css"/>
<link rel="stylesheet" href="../css/widget.tabs.css"/>
<link rel="stylesheet" href="css/selector-links.css"/>
<link rel="stylesheet" href="../examples/css/params-table.css"/>
<link rel="stylesheet" href="../examples/css/params-inspector.css"/>
<style type="text/css">
#page_paramsInspector_preview {
width:240px;
}
</style>
</head>
<body>
<script type="text/javascript" src="../js/Uize.js"></script>
<h1 class="header">
<a id="page-homeLink" href="../index.html" title="UIZE JavaScript Framework home"></a>
<a href="../index.html" class="homeLinkText" title="UIZE JavaScript Framework home">UIZE JavaScript Framework</a>
</h1>
<div class="main">
<h1 class="document-title">
<a href="../javascript-examples.html" class="breadcrumb breadcrumbWithArrow">JAVASCRIPT EXAMPLES</a>
Uize.Widget.Swap.Image
<div class="pageActionsShell">
<div id="page-actions" class="pageActions"><a href="source-code/swap-image.html" class="buttonLink">SOURCE</a></div>
</div>
</h1>
<!-- explanation copy -->
<div class="explanation">
<p>In this example, an instance of <a href="../reference/Uize.Widget.Swap.Image.html"><code>Uize.Widget.Swap.Image</code></a> has been wired up to a <code>div</code> in the document. This class provides a highly configurable yet lightweight JavaScript animation effect to transition from one image to another. A list of links in the <b>"PRESETS"</b> tab lets you preview all the effect themes defined in the <a href="../reference/Uize.Widget.Swap.Themes.html"><code>Uize.Widget.Swap.Themes</code></a> module. Click to experience some of the many effects that this widget supports. To fool around with the settings for a theme to create your own swap effects, switch over to the <b>"PARAMS"</b> tab to tweak values and click the <b>"PERFORM SWAP EFFECT"</b> button to preview changes. To understand how the effect settings work, consult the reference for the <a href="../reference/Uize.Widget.Swap.html"><code>Uize.Widget.Swap</code></a> class.</p>
</div>
<!-- page layout's "wireframe" with slots for Uize.Widget.Swap.Image instance and params inspector -->
<table border="0" cellspacing="0" cellpadding="4" style="margin:auto;">
<tr valign="top">
<td>
<div id="page_imageSwap" style="position:relative; width:500px; height:357px; border:1px solid #555; background:#000;"></div>
</td>
<td id="page-paramsInspector"></td>
</tr>
</table>
</div>
<!-- JavaScript code to make the static swap HTML "come alive" -->
<script type="text/javascript">
Uize.require (
[
'UizeSite.Page.Example.library',
'UizeSite.Page.Example',
'Uize.Widget.Swap.Image',
'Uize.Widget.Swap.Themes',
'UizeSite.TestData.Photos',
'UizeSite.ParamsInspector'
],
function () {
'use strict';
/*** create the example page widget ***/
var page = window.page = UizeSite.Page.Example ();
/*** create the Uize.Widget.Swap.Image instance ***/
var imageSwap = page.addChild ('imageSwap',Uize.Widget.Swap.Image,{built:false});
/*** create the params inspector widget ***/
var
photos = UizeSite.TestData.Photos (),
photoNo = 0
;
page.addChild (
'paramsInspector',
UizeSite.ParamsInspector,
{
params:{
crossFade:'boolean',
crossFadeSize:'number',
crossFadeAlign:'number',
dissolve:'boolean',
viewContentAlignX:'json',
viewContentAlignY:'json',
viewSeedSizeX:'number',
viewSeedSizeY:'number',
viewSeedAlignX:'number',
viewSeedAlignY:'number'
},
presets:Uize.Widget.Swap.Themes (),
previewButtonText:'PERFORM SWAP EFFECT'
}
).wire (
'Preset Selected',
function (_presetName) {
imageSwap.set (page.children.paramsInspector.getValues ());
imageSwap.set ({src:photos [photoNo].image});
photoNo = (photoNo + 1) % photos.length;
}
);
/*** wire up the page widget ***/
page.wireUi ();
}
);
</script>
</body>
</html>
//
koh5_pano
Drag mouse to navigate.
Navigation
- Left/Right Mouse drag: Changes camera heading.
- Up/Sown Mouse drag: Changes camera pitch.
- Scroll wheel: Changes camera field of view.
- I-Key: Displays Info panel with canvas size, image size and FPS.
17.Aug.2010, Martin Wengenmayer