This article provides the minimal code for four different methods to add zoom to the pictures on your Web page. The first method uses a single image. When you click on the image a JavaScript function is used to enlarge the image.
Welcome to Bucaro TecHelp!

Welcome to Bucaro TecHelp!
Maintain Your Computer and Use it More Effectively
to Design a Web Site and Make Money on the Web

About Bucaro TecHelp About BTH User Agreement User Agreement Privacy Policy Privacy Site Map Site Map Contact Bucaro TecHelp Contact Advertise on Bucaro TecHelp Advertise Here RSS News Feeds News Feeds

HTML5 Solutions: Essential Techniques for HTML5 Developers

Essential Techniques for HTML5 Developers

HTML5 brings the biggest changes to HTML in years. Web designers now have new techniques, from displaying video and audio natively in HTML, to creating realtime graphics on a web page without a plugin.

This book provides a collection of solutions to all of the most common HTML5 problems. Every solution contains sample code that is production-ready and can be applied to any project.

Click Here

Easy Java Script Picture Zoom Code

Most of the example code that I’ve found on the web is bloated with unnecessary complexity. Maybe the authors were trying to show off their proficiency in programming. The extra complexity makes it very difficult to modify the examples for your own use.

This article provides the minimal code for four different methods to add zoom to the pictures on your Web page. The first method uses a single image. When you click on the image a JavaScript function is used to enlarge the image.

Blurry Zoom

Click on the image below and note how the image zooms in and out.

The only complexity involved with the example above is that I put the image inside a table. This stops the web page from growing and shrinking when the image changes. Note the call to the zoomBlurry() function for the onClick event of the image tag.

<table cellspacing=0 cellpadding=0 width=380 height=340>
<tr><td align="center" valign="center">
<img name="slide1" src="flamingo_s.jpg" onClick="zoomBlurry();">
</td></tr></table>

To use the zoom method demonstrated above, copy the JavaScript code below into the HEAD section of your web page. In the code change the path of the image to the path of the image that you want to zoom.

<script language="JavaScript">
var zoom1 = 0;

function zoomBlurry()
{
   if(zoom1 == 0)
   {
      zoom1 = 1;
      document.slide1.src = "flamingo_s.jpg";
      document.slide1.width = 360
      document.slide1.height = 320
   }
   else
   {
      zoom1 = 0;
      document.slide1.src = "flamingo_s.jpg";
      document.slide1.width = 180
      document.slide1.height = 160
   }
}
</script>

RSS Feed RSS Feed



Web Design Sections

Eloquent JavaScript: A Modern Introduction to Programming

Eloquent JavaScript

Eloquent JavaScript Eloquent JavaScript goes beyond the cut-and-paste scripts of the recipe books and teaches you to write code that's elegant and effective. You'll start with the basics of programming, and learn to use variables, control structures, functions, and data structures. Then you'll dive into the real JavaScript artistry: higher-order functions, closures, and object-oriented programming.

Reader Anthony says, "This book is not your typical Javascript book. Others have a utilitarian approach. In stark contrast, Eloquent JavaScript does not merely provide you a checklist of things to learn but rather paints a panorama of the possibilities that programming provides. Javascript is merely the tool used to introduce these to the reader.

Click here for more information.


[Site User Agreement] [Advertise on This site] [Search This Site] [Contact Form]
Copyright©2001-2011 Bucaro TecHelp 13771 N Fountain Hills Blvd Suite 114-248 Fountain Hills, AZ 85268