mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-17 15:03:25 +00:00
92 lines
3.5 KiB
HTML
92 lines
3.5 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
<title>Using ImageLoader with CSS Class Names</title>
|
|
|
|
<style type="text/css">
|
|
/*margin and padding on body element
|
|
can introduce errors in determining
|
|
element position and are not recommended;
|
|
we turn them off as a foundation for YUI
|
|
CSS treatments. */
|
|
body {
|
|
margin:0;
|
|
padding:0;
|
|
}
|
|
</style>
|
|
|
|
<link rel="stylesheet" type="text/css" href="../../build/fonts/fonts-min.css" />
|
|
<script type="text/javascript" src="../../build/yahoo-dom-event/yahoo-dom-event.js"></script>
|
|
<script type="text/javascript" src="../../build/imageloader/imageloader-min.js"></script>
|
|
|
|
<!--there is no custom header content for this example-->
|
|
|
|
</head>
|
|
|
|
<body class="yui-skin-sam">
|
|
|
|
|
|
<h1>Using ImageLoader with CSS Class Names</h1>
|
|
|
|
<div class="exampleIntro">
|
|
<p>The <a href="http://developer.yahoo.com/yui/imageloader/">ImageLoader Utility</a> allows you an alternate method of using CSS class names to load images.</p>
|
|
|
|
<p>Hover over each image to show its triggers and limit. Try tripping the triggers to see the load reactions. Refresh the page to reset the images.</p>
|
|
|
|
|
|
</div>
|
|
|
|
<!--BEGIN SOURCE CODE FOR EXAMPLE =============================== -->
|
|
|
|
<style>
|
|
|
|
.everything { position:relative; height:420px; }
|
|
.everything div { border:1px solid #888; }
|
|
.topmain { position:absolute; top:10px; left:120px; height:75px; width:100px; }
|
|
.duo1 { position:absolute; top:130px; left:20px; height:67px; width:100px; }
|
|
.duo2 { position:absolute; top:130px; left:220px; height:53px; width:100px; }
|
|
.scroll { position:absolute; top:320px; left:120px; height:72px; width:100px; }
|
|
|
|
.yui-imgload-maingroup,
|
|
.yui-imgload-duogroup,
|
|
.yui-imgload-scrollgroup
|
|
{ background:none !important; }
|
|
|
|
</style>
|
|
|
|
|
|
<div class='everything' id='everything'>
|
|
<div class='topmain yui-imgload-maingroup' id='topmain' style='background-image:url("http://developer.yahoo.com/yui/docs/assets/examples/exampleimages/small/museum.jpg");' title='group 1; mouseover image; 2 sec limit'></div>
|
|
<div class='duo1 yui-imgload-duogroup' id='duo1' style='background-image:url("http://developer.yahoo.com/yui/docs/assets/examples/exampleimages/small/uluru.jpg");' title='group 2; mouseover left image, or click on right image; 4 sec limit'></div>
|
|
<div class='duo2 yui-imgload-duogroup' id='duo2' style='background-image:url("http://developer.yahoo.com/yui/docs/assets/examples/exampleimages/small/katatjuta.jpg");' title='group 2; mouseover left image, or click on right image; 4 sec limit'></div>
|
|
<div class='scroll' title='group 3; scroll; no time limit'>
|
|
<img id='scrollImg' class='yui-imgload-scrollgroup' style='background-image:url("http://developer.yahoo.com/yui/docs/assets/examples/exampleimages/small/morraine.jpg");' src='http://l.yimg.com/a/i/us/tr/b/1px_trans.gif' width='100' height='72' />
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<script>
|
|
|
|
var mainGroup = new YAHOO.util.ImageLoader.group('topmain', 'mouseover', 2);
|
|
mainGroup.className = 'yui-imgload-maingroup';
|
|
mainGroup.name = 'group 1';
|
|
|
|
var duoGroup = new YAHOO.util.ImageLoader.group('duo1', 'mouseover', 4);
|
|
duoGroup.className = 'yui-imgload-duogroup';
|
|
duoGroup.addTrigger('duo2', 'click');
|
|
duoGroup.name = 'group 2';
|
|
|
|
var scrollGroup = new YAHOO.util.ImageLoader.group(window, 'scroll');
|
|
scrollGroup.className = 'yui-imgload-scrollgroup';
|
|
scrollGroup.name = 'group 3';
|
|
|
|
</script>
|
|
|
|
<!--END SOURCE CODE FOR EXAMPLE =============================== -->
|
|
|
|
</body>
|
|
</html>
|