Results 1 to 6 of 6

Thread: Projects

  1. #1
    Join Date
    Sep 2010
    Location
    Hi Stalker.
    Posts
    148
    Thanks
    16
    Thanked 3 Times in 3 Posts

    Default Projects

    Hi, I have made a probably-too-simple-to-get-into-DynamicDrive image 'zoomer', though I would call it zoom, more like Close Up Pop Up...
    [to the point]Basicly, it is a pop-up that shows a closer view of an image.
    It's all simple coding, and easily editable and all in HTML and JavaScript.
    Code:
    <a href="http://mysite.com/index.html" onclick="window.open('http://mysite.com/index.html','popup','width=500,height=500,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false">text</a>
    NOTE: Don't forget to edit <a href="HTTP://MYSITE.COM/INDEX.HTML" and onclick="window.open('HTTP://MYSITE.COM/INDEX.HTML'.
    Leave everything else (for now).
    OK, now make the pop up page, just adding it's content. Nothing else.
    EX:
    HTML Code:
    <html><head><title>Pop-Up</title></head><body><p><font size="45">Hey! This is text!</font></p></body></html>
    OK, now test it out. Enjoy!
    EXTRAS: (you really want to see these)
    1. Edit this part of the code to make it suitable for you:
    'width=500,height=500,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false">text</a>

    2. Add MP3, or MP4 players inside the pop ups. To generate an MP3 Player, use http://profilepitstop.com/mp3_players or http://poqbum.com .

    Enjoy!
    Last edited by [Nicolas]; 09-19-2010 at 02:00 AM.

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Quote Originally Posted by [Nicolas] View Post
    . . . easily editable and all in HTML.
    Code:
    <a href="http://mysite.com/index.html" onclick="window.open('http://mysite.com/index.html','popup','width=500,height=500,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false">text</a>
    The highlighted is NOT HTML. It's javascript. Javascript which in this particular case can be easily blocked by the browser while still allowing other javascript.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Sep 2010
    Location
    Hi Stalker.
    Posts
    148
    Thanks
    16
    Thanked 3 Times in 3 Posts

    Default

    Thanks for correcting!

  4. #4
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    You're welcome. I should also point out that:

    Code:
    'width=500,height=500,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false">text</a>
    is the same as:

    Code:
    'width=500,height=500,left=0,top=0'); return false">text</a>
    As the absence of those specifications is (in the presence of those remaining) the same as setting them to no.

    However, though often supported in local testing, all browsers will block (expressed or implied):

    Code:
    location=no
    in a live implementation. Some browsers will also block other of these as well in a live implementation.
    Last edited by jscheuer1; 09-18-2010 at 08:12 AM. Reason: spelling
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  5. #5
    Join Date
    Sep 2010
    Location
    Hi Stalker.
    Posts
    148
    Thanks
    16
    Thanked 3 Times in 3 Posts

    Default

    Thanks!
    New project done, v1.0 Jigsaw Game, most work done by Dynamic Drive's Draggable elements script.
    BUGS:
    background image slightly off,
    pieces not in "Pieces" board,
    and white box to finish the puzzle in almost too small.
    V1.1 or V2 soon. Enjoy!
    Download: (over 120 kb)
    jigsaw.zip

  6. #6
    Join Date
    Sep 2010
    Location
    Hi Stalker.
    Posts
    148
    Thanks
    16
    Thanked 3 Times in 3 Posts

    Default

    WIP: Gallery script, Word Scramble (Credits to DD!)
    Planned: Slide menu

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •