Generating thumbnails of a page

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Bruno Barberi Gnecco

    Generating thumbnails of a page

    Is there anyway to rescale a whole page homogeneously, so that
    is looks like a thumbnail?

    --
    Bruno Barberi Gnecco <brunobg_at_use rs.sourceforge. net>
    Painting, n.:
    The art of protecting flat surfaces from the weather, and
    exposing them to the critic.
    -- Ambrose Bierce
  • Evertjan.

    #2
    Re: Generating thumbnails of a page

    Bruno Barberi Gnecco wrote on 17 sep 2005 in comp.lang.javas cript:
    [color=blue]
    > Is there anyway to rescale a whole page homogeneously, so that
    > is looks like a thumbnail?
    >[/color]

    document.body.s tyle.zoom = '5%'

    IE5.5+ only??

    --
    Evertjan.
    The Netherlands.
    (Replace all crosses with dots in my emailaddress)

    Comment

    • Bruno Barberi Gnecco

      #3
      Re: Generating thumbnails of a page

      Evertjan. wrote:[color=blue]
      > Bruno Barberi Gnecco wrote on 17 sep 2005 in comp.lang.javas cript:
      >
      >[color=green]
      >> Is there anyway to rescale a whole page homogeneously, so that
      >>is looks like a thumbnail?
      >>[/color]
      >
      >
      > document.body.s tyle.zoom = '5%'
      >
      > IE5.5+ only??
      >[/color]

      Yes, seems to be a MS extension. I suppose it could be possible
      to zoom elements by hand, resizing the fonts and scaling the images,
      but it's hard to do it homogeneously.

      --
      Bruno Barberi Gnecco <brunobg_at_use rs.sourceforge. net>
      Good, fast, and cheap. Choose any two.

      Comment

      • Evertjan.

        #4
        Re: Generating thumbnails of a page

        Bruno Barberi Gnecco wrote on 18 sep 2005 in comp.lang.javas cript:
        [color=blue]
        > Evertjan. wrote:[color=green]
        >> Bruno Barberi Gnecco wrote on 17 sep 2005 in comp.lang.javas cript:
        >>
        >>[color=darkred]
        >>> Is there anyway to rescale a whole page homogeneously, so that
        >>>is looks like a thumbnail?
        >>>[/color]
        >>
        >>
        >> document.body.s tyle.zoom = '5%'
        >>
        >> IE5.5+ only??
        >>[/color]
        >
        > Yes, seems to be a MS extension. I suppose it could be possible
        > to zoom elements by hand, resizing the fonts and scaling the images,
        > but it's hard to do it homogeneously.
        >[/color]

        Did you try my advice?
        Why not zoom the body element as shown?

        --
        Evertjan.
        The Netherlands.
        (Replace all crosses with dots in my emailaddress)

        Comment

        • Bruno Barberi Gnecco

          #5
          Re: Generating thumbnails of a page

          Evertjan. wrote:[color=blue]
          > Bruno Barberi Gnecco wrote on 18 sep 2005 in comp.lang.javas cript:
          >
          >[color=green]
          >>Evertjan. wrote:
          >>[color=darkred]
          >>>Bruno Barberi Gnecco wrote on 17 sep 2005 in comp.lang.javas cript:
          >>>
          >>>
          >>>
          >>>> Is there anyway to rescale a whole page homogeneously, so that
          >>>>is looks like a thumbnail?
          >>>>
          >>>
          >>>
          >>>document.bod y.style.zoom = '5%'
          >>>
          >>>IE5.5+ only??
          >>>[/color]
          >>
          >> Yes, seems to be a MS extension. I suppose it could be possible
          >>to zoom elements by hand, resizing the fonts and scaling the images,
          >>but it's hard to do it homogeneously.
          >>[/color]
          >
          >
          > Did you try my advice?
          > Why not zoom the body element as shown?
          >[/color]

          Because it only works in IE.

          --
          Bruno Barberi Gnecco <brunobg_at_use rs.sourceforge. net>

          Comment

          Working...