diff options
author | Filipp Lepalaan <f@230.to> | 2014-02-19 18:02:09 +0200 |
---|---|---|
committer | Filipp Lepalaan <f@230.to> | 2014-02-19 18:02:09 +0200 |
commit | 75ad7e4bd7d69243e7e5281c2642f00478fb072d (patch) | |
tree | eaaaf360902d369f42d94778aac8803db7973ce0 /apps/it/static/js/ui/demos/position | |
parent | cfc7c3f52544af8a71d3fa3988a06fee200d2c24 (diff) | |
download | pudding-75ad7e4bd7d69243e7e5281c2642f00478fb072d.tar.gz pudding-75ad7e4bd7d69243e7e5281c2642f00478fb072d.tar.bz2 pudding-75ad7e4bd7d69243e7e5281c2642f00478fb072d.zip |
Added tags, jquery UI
Diffstat (limited to 'apps/it/static/js/ui/demos/position')
-rw-r--r-- | apps/it/static/js/ui/demos/position/cycler.html | 107 | ||||
-rw-r--r-- | apps/it/static/js/ui/demos/position/default.html | 137 | ||||
-rw-r--r-- | apps/it/static/js/ui/demos/position/images/earth.jpg | bin | 0 -> 29850 bytes | |||
-rw-r--r-- | apps/it/static/js/ui/demos/position/images/flight.jpg | bin | 0 -> 33637 bytes | |||
-rw-r--r-- | apps/it/static/js/ui/demos/position/images/rocket.jpg | bin | 0 -> 32986 bytes | |||
-rw-r--r-- | apps/it/static/js/ui/demos/position/index.html | 15 |
6 files changed, 259 insertions, 0 deletions
diff --git a/apps/it/static/js/ui/demos/position/cycler.html b/apps/it/static/js/ui/demos/position/cycler.html new file mode 100644 index 0000000..e33e3be --- /dev/null +++ b/apps/it/static/js/ui/demos/position/cycler.html @@ -0,0 +1,107 @@ +<!doctype html> +<html lang="en"> +<head> + <meta charset="utf-8"> + <title>jQuery UI Position - Image Cycler</title> + <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css"> + <script src="../../jquery-1.10.2.js"></script> + <script src="../../ui/jquery.ui.core.js"></script> + <script src="../../ui/jquery.ui.widget.js"></script> + <script src="../../ui/jquery.ui.position.js"></script> + <link rel="stylesheet" href="../demos.css"> + <style> + body { + margin: 0; + } + #container { + overflow: hidden; + position: relative; + height: 400px; + } + + img { + position: absolute; + } + </style> + <script> + $(function() { + // TODO refactor into a widget and get rid of these plugin methods + $.fn.left = function( using ) { + return this.position({ + my: "right middle", + at: "left+25 middle", + of: "#container", + collision: "none", + using: using + }); + }; + $.fn.right = function( using ) { + return this.position({ + my: "left middle", + at: "right-25 middle", + of: "#container", + collision: "none", + using: using + }); + }; + $.fn.center = function( using ) { + return this.position({ + my: "center middle", + at: "center middle", + of: "#container", + using: using + }); + }; + + $( "img:eq(0)" ).left(); + $( "img:eq(1)" ).center(); + $( "img:eq(2)" ).right(); + + function animate( to ) { + $( this ).stop( true, false ).animate( to ); + } + function next( event ) { + event.preventDefault(); + $( "img:eq(2)" ).center( animate ); + $( "img:eq(1)" ).left( animate ); + $( "img:eq(0)" ).right().appendTo( "#container" ); + } + function previous( event ) { + event.preventDefault(); + $( "img:eq(0)" ).center( animate ); + $( "img:eq(1)" ).right( animate ); + $( "img:eq(2)" ).left().prependTo( "#container" ); + } + $( "#previous" ).click( previous ); + $( "#next" ).click( next ); + + $( "img" ).click(function( event ) { + $( "img" ).index( this ) === 0 ? previous( event ) : next( event ); + }); + + $( window ).resize(function() { + $( "img:eq(0)" ).left( animate ); + $( "img:eq(1)" ).center( animate ); + $( "img:eq(2)" ).right( animate ); + }); + }); + </script> +</head> +<body> + +<div id="container"> + <img src="images/earth.jpg" width="458" height="308" alt="earth"> + <img src="images/flight.jpg" width="512" height="307" alt="flight"> + <img src="images/rocket.jpg" width="300" height="353" alt="rocket"> + + <a id="previous" href="#">Previous</a> + <a id="next" href="#">Next</a> +</div> + +<div class="demo-description"> +<p>A photoviewer prototype using Position to place images at the center, left and right and cycle them. +<br>Use the links at the top to cycle, or click on the images on the left and right. +<br>Note how the images are repositioned when resizing the window. +</div> +</body> +</html> diff --git a/apps/it/static/js/ui/demos/position/default.html b/apps/it/static/js/ui/demos/position/default.html new file mode 100644 index 0000000..6248c38 --- /dev/null +++ b/apps/it/static/js/ui/demos/position/default.html @@ -0,0 +1,137 @@ +<!doctype html> +<html lang="en"> +<head> + <meta charset="utf-8"> + <title>jQuery UI Position - Default functionality</title> + <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css"> + <script src="../../jquery-1.10.2.js"></script> + <script src="../../ui/jquery.ui.core.js"></script> + <script src="../../ui/jquery.ui.widget.js"></script> + <script src="../../ui/jquery.ui.mouse.js"></script> + <script src="../../ui/jquery.ui.draggable.js"></script> + <script src="../../ui/jquery.ui.position.js"></script> + <link rel="stylesheet" href="../demos.css"> + <style> + #parent { + width: 60%; + height: 40px; + margin: 10px auto; + padding: 5px; + border: 1px solid #777; + background-color: #fbca93; + text-align: center; + } + .positionable { + position: absolute; + display: block; + right: 0; + bottom: 0; + background-color: #bcd5e6; + text-align: center; + } + #positionable1 { + width: 75px; + height: 75px; + } + #positionable2 { + width: 120px; + height: 40px; + } + select, input { + margin-left: 15px; + } + </style> + <script> + $(function() { + function position() { + $( ".positionable" ).position({ + of: $( "#parent" ), + my: $( "#my_horizontal" ).val() + " " + $( "#my_vertical" ).val(), + at: $( "#at_horizontal" ).val() + " " + $( "#at_vertical" ).val(), + collision: $( "#collision_horizontal" ).val() + " " + $( "#collision_vertical" ).val() + }); + } + + $( ".positionable" ).css( "opacity", 0.5 ); + + $( "select, input" ).bind( "click keyup change", position ); + + $( "#parent" ).draggable({ + drag: position + }); + + position(); + }); + </script> +</head> +<body> + +<div id="parent"> + <p> + This is the position parent element. + </p> +</div> + +<div class="positionable" id="positionable1"> + <p> + to position + </p> +</div> + +<div class="positionable" id="positionable2"> + <p> + to position 2 + </p> +</div> + +<div style="padding: 20px; margin-top: 75px;"> + position... + <div style="padding-bottom: 20px;"> + <b>my:</b> + <select id="my_horizontal"> + <option value="left">left</option> + <option value="center">center</option> + <option value="right">right</option> + </select> + <select id="my_vertical"> + <option value="top">top</option> + <option value="center">center</option> + <option value="bottom">bottom</option> + </select> + </div> + <div style="padding-bottom: 20px;"> + <b>at:</b> + <select id="at_horizontal"> + <option value="left">left</option> + <option value="center">center</option> + <option value="right">right</option> + </select> + <select id="at_vertical"> + <option value="top">top</option> + <option value="center">center</option> + <option value="bottom">bottom</option> + </select> + </div> + <div style="padding-bottom: 20px;"> + <b>collision:</b> + <select id="collision_horizontal"> + <option value="flip">flip</option> + <option value="fit">fit</option> + <option value="flipfit">flipfit</option> + <option value="none">none</option> + </select> + <select id="collision_vertical"> + <option value="flip">flip</option> + <option value="fit">fit</option> + <option value="flipfit">flipfit</option> + <option value="none">none</option> + </select> + </div> +</div> + +<div class="demo-description"> +<p>Use the form controls to configure the positioning, or drag the positioned element to modify its offset. +<br>Drag around the parent element to see collision detection in action.</p> +</div> +</body> +</html> diff --git a/apps/it/static/js/ui/demos/position/images/earth.jpg b/apps/it/static/js/ui/demos/position/images/earth.jpg Binary files differnew file mode 100644 index 0000000..e5477f7 --- /dev/null +++ b/apps/it/static/js/ui/demos/position/images/earth.jpg diff --git a/apps/it/static/js/ui/demos/position/images/flight.jpg b/apps/it/static/js/ui/demos/position/images/flight.jpg Binary files differnew file mode 100644 index 0000000..362bd1a --- /dev/null +++ b/apps/it/static/js/ui/demos/position/images/flight.jpg diff --git a/apps/it/static/js/ui/demos/position/images/rocket.jpg b/apps/it/static/js/ui/demos/position/images/rocket.jpg Binary files differnew file mode 100644 index 0000000..9c0495c --- /dev/null +++ b/apps/it/static/js/ui/demos/position/images/rocket.jpg diff --git a/apps/it/static/js/ui/demos/position/index.html b/apps/it/static/js/ui/demos/position/index.html new file mode 100644 index 0000000..a7b7548 --- /dev/null +++ b/apps/it/static/js/ui/demos/position/index.html @@ -0,0 +1,15 @@ +<!doctype html> +<html lang="en"> +<head> + <meta charset="utf-8"> + <title>jQuery UI Position Demo</title> +</head> +<body> + +<ul> + <li><a href="default.html">Default functionality</a></li> + <li><a href="cycler.html">Cycling images</a></li> +</ul> + +</body> +</html> |