• browse over image?

    From Dale@21:1/5 to All on Wed Aug 17 21:59:20 2022
    Hi,

    I know how to have links in locations within an image.

    https://www.w3schools.com/html/html_images_imagemap.asp

    https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_image_link

    What I would like to do is browse over an image and have something like
    a zoom of the area come up until you browse off the area.

    I just want the zoom to be on top of the image. I don't want the image
    to disappear.

    Instead of an image zoom how about a frame of a html link coming up?


    --
    Mystery? -> https://www.dalekelly.org/

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From JJ@21:1/5 to Dale on Fri Aug 19 07:20:21 2022
    On Wed, 17 Aug 2022 21:59:20 -0400, Dale wrote:
    Hi,

    I know how to have links in locations within an image.

    https://www.w3schools.com/html/html_images_imagemap.asp

    https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_image_link

    What I would like to do is browse over an image and have something like
    a zoom of the area come up until you browse off the area.

    I just want the zoom to be on top of the image. I don't want the image
    to disappear.

    Instead of an image zoom how about a frame of a html link coming up?

    Not possible with HTML and CSS alone, because AREA tags are not rendered. They're only used as data source. Much like PARAM tags which are used by
    OBJECT and APPLET tags. Using CSS :hover on AREA elements won't be
    effective, because the elements don't exist on the rendered page in the
    first place.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Dale@21:1/5 to All on Thu Aug 18 20:28:16 2022
    On 8/18/2022 8:20 PM, JJ wrote:
    On Wed, 17 Aug 2022 21:59:20 -0400, Dale wrote:
    Hi,

    I know how to have links in locations within an image.

    https://www.w3schools.com/html/html_images_imagemap.asp

    https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_image_link

    What I would like to do is browse over an image and have something like
    a zoom of the area come up until you browse off the area.

    I just want the zoom to be on top of the image. I don't want the image
    to disappear.

    Instead of an image zoom how about a frame of a html link coming up?

    Not possible with HTML and CSS alone, because AREA tags are not rendered. They're only used as data source. Much like PARAM tags which are used by OBJECT and APPLET tags. Using CSS :hover on AREA elements won't be
    effective, because the elements don't exist on the rendered page in the
    first place.


    Thank You any how !

    --
    Mystery? -> https://www.dalekelly.org/

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)