Page Zoom

This is a discussion on "Page Zoom" within the JavaScript Forum section. This forum, and the thread "Page Zoom are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > JavaScript Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Nov 30th, 2007, 08:12
Reputable Member
Join Date: May 2007
Location: Margate
Age: 24
Posts: 156
Thanks: 0
Thanked 0 Times in 0 Posts
Page Zoom

Hi all,
Am not sure if this is Java. I am after a web page zoom button.


Cheers

Daniel
Reply With Quote

  #2 (permalink)  
Old Nov 30th, 2007, 13:03
Rakuli's Avatar
SuperMember

SuperMember
Join Date: Sep 2007
Location: Australia
Age: 24
Posts: 956
Blog Entries: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Page Zoom

Most broswers provide this functionality through "text-size" or "page zoom"...

It can be done with javascript using a combination of elastic css layouts and relative text sizing.

Basically you have to set everything as a relative size, div widths, font sizes, border widths etc.. use em's as an example.

You set the body to have base size of 1em then can resize it with javascript using something like

Code: Select all
// increase

document.getElementsByTagName('body')[0].style.fontSize = (parseInt(document.getElementsByTagName('body')[0].style.fontSize) + 0.2) + 'em';

//decrease
document.getElementsByTagName('body')[0].style.fontSize = (parseInt(document.getElementsByTagName('body')[0].style.fontSize) - 0.2) + 'em';
Hope that helps
Last Blog Entry: The wannabe juggler's quest (Oct 27th, 2007)
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
2 ondblclick handlers to zoom-in/zoom-out images benreynolds4 JavaScript Forum 4 May 23rd, 2008 19:39
Scale/Zoom with AS PixelLuv Flash & Multimedia Forum 8 Mar 9th, 2007 22:26
image zoom and scrollbar neo007 JavaScript Forum 0 Feb 15th, 2007 02:54
page zoom issue with IE7 badlyDrawnToy Web Page Design 0 Jan 30th, 2007 15:57
zoom and scroll danieldear Flash & Multimedia Forum 6 Jul 7th, 2006 20:45


All times are GMT. The time now is 04:41.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43