Zoomooz is a jQuery plugin for making web page elements zoom, with animation, scale, and rotate effects.
You can zoom to elements that have been translated, scaled and skewed, and they will morph correctly.
• With this plugin you can make the HTML elements zoom without eaven write JavaScript / jQuery code, only with HTML code and some attributes.
- It works in all major browsers (IE 9+).
Some text zoomooz example...
From: https://coursesweb.net/javascript/
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Example Zoomooz</title> <script src="js/jquery.js" type="text/javascript"></script> <script type="text/javascript" src="js/jquery.zoomooz.min.js"></script> <style type="text/css"> #exz1 { width: 14em; background: #bebebe; border: 2px solid blue; font-size: 1.1em; } </style> </head> <body> Click on the box to zoom in, then click outside the box to zoom out. <div id="exz1" class="zoomTarget">CLICK<p>Some text zoomooz example...<br/> From: https://coursesweb.net/</p></div> </body> </html>
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Example Zoomooz - insde container</title> <script src="js/jquery.js" type="text/javascript"></script> <script type="text/javascript" src="js/jquery.zoomooz.min.js"></script> <style type="text/css"> #exz2 { width: 32em; height: 15em; background: #bbb; text-align: center; } #exz2 .zoomContainer div { display: inline-block; width: 8em; height: 3em; margin: .8em 1em; border: 1px solid blue; background: #fff; font-size: 1.1em; padding: 1em .4em; } </style> </head> <body> Click on the box to zoom in, then click again to zoom out. <div id="exz2" class="zoomViewport"> <div class="zoomContainer"> <div class="zoomTarget" data-closeclick="true">Target 1 <br> (click twice)</div> <div class="zoomTarget" data-closeclick="true">Target 2 <br> (click twice)</div> </div> </div> </body> </html>
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Example Zoomooz - insde container 2</title> <script src="js/jquery.js" type="text/javascript"></script> <script type="text/javascript" src="js/jquery.zoomooz.min.js"></script> <style type="text/css"> #exz3 { margin:0;padding:0;width:38em;height:20em;background: #beb;margin-top:.5em auto; } #exz3 .zoomContainer { margin:0;padding:0;width:38em;height:25em;position:relative; } #exz3 div { -webkit-tap-highlight-color:rgba(0,0,0,0); } #item1 { background-color:#fcc;position:absolute;left:2em;top:1em;width:15em;height:10em;border:1px solid red; } #item2 { background-color:#ccf;position:absolute;top:2em;right:1em;width:15em;height:10em;border:1px solid blue;-moz-transform: rotate(11deg);-webkit-transform: rotate(11deg); -o-transform: rotate(11deg); } #item3 { display:block;position:relative;margin:2em auto auto 3em; } #item4 { background-color:#ffc;position:absolute;bottom:10em;left:8em;width:8em;height:8em;border:1px solid yellow;-webkit-transform: rotate(30deg) skew(20deg);-moz-transform: rotate(30deg) skew(20deg);-o-transform: rotate(30deg) skew(20deg); } </style> </head> <body> Click on any item to zoom in, then click again to zoom out. <div id="exz3" class="zoomViewport"> <div class="zoomContainer"> <div id="item1" class="zoomTarget" data-closeclick="true">Item 1</div> <div id="item2" class="zoomTarget" data-closeclick="true">Rotate Parent Item Zoom. <img src="image.jpg" alt="Image-zoom" id="item3" class="zoomTarget" data-closeclick="true" width="110" height="70" /> </div> <div id="item4" class="zoomTarget" data-closeclick="true">Item 4 Zoom, Rotate, Skew.</div> </div> </div> </body> </html>
<script src="js/jquery.js" type="text/javascript"></script> <script type="text/javascript" src="js/jquery.zoomooz.min.js"></script>3. Then, simply add "zoomTarget" to the element you want to zoom to when clicked on:
<div class="zoomTarget">This element zooms when clicked on, <em>https://coursesweb.net/</em></div>
- You can also add some additional attributes for tuning the animation as data fields of the element:<div class="zoomTarget" data-targetsize="0.45" data-duration="600">This element zooms when clicked on, <em>https://coursesweb.net/</em></div>
3.2 To make an element zoom with jQuery when clicked on, you can use "zoomTarget()":<script> $(document).ready(function() { $("#element").zoomTarget(); }); </script>• More details about Zoomooz options, and examples are in the "index.html" page from the archive with this jQuery plugin (a Download button is at the beginning of this page).
<table><tr> <th>Title 1</th> <th>Title 2</th> </tr></table>
.some_class { line-height: 150%; }
document.getElementById("id_button").onclick = function(){ window.open("http://coursesweb.net/"); }
$ar_dir = scandir("dir_name"); var_export($ar_dir);