Skip to content

Commit

Permalink
add files
Browse files Browse the repository at this point in the history
  • Loading branch information
creaven committed Apr 12, 2010
1 parent 54808b8 commit 9b89dc3
Show file tree
Hide file tree
Showing 10 changed files with 6,514 additions and 0 deletions.
Binary file added Demo/girl-thumb.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Demo/girl.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Demo/gomer-small.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Demo/gomer.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions Demo/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" version="-//W3C//DTD XHTML 1.1//EN" xml:lang="en">
<head>
<title>Zoomer</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="../Source/Zoomer.js"></script>
<script type="text/javascript">
$(document).ready(function(){
//new Zoomer('#homer');
new Zoomer('#girl', {
big: 'girl.jpg',
smooth: 10
});
$('#homer').zoomer({smooth: 10});
});
</script>
</head>
<body>
<h2>Homer</h2>
<img src="gomer-small.jpg" id="homer" big="gomer.jpg"/>
<br><br>
<h2>Queen</h2>
<img src="girl-thumb.jpg" id="girl" style="border:solid 1px gray;padding:3px;margin:10px"/>
</body>
</html>
Loading

0 comments on commit 9b89dc3

Please sign in to comment.