Hello everyone,
i am looking for a script that does the ads that you sometime see on msn that plays a dynamic ad on top of the browser and then shrinks into an ad on the page. Any thought as to where i can get a hold of such a script.
Thanks.
Hello everyone,
i am looking for a script that does the ads that you sometime see on msn that plays a dynamic ad on top of the browser and then shrinks into an ad on the page. Any thought as to where i can get a hold of such a script.
Thanks.
does anyone have any thought as to how to do this. anyreplies is appreciated
Please use a descriptive title for your posts. "looking for a script" does NOT help.
This can be accomplished in several ways. What format are your ads in? Flash? Images? Javascript can be used on images to make them move, or you can use flash to do various movements.
Details?
Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum
Yeah, details man... do you want it to fade or slide down into the page???
What script can you use...PHP, Javascript, flash??? please be very discriptive.. like djr33 said... Please extend you though it helps us and helps you...
You may want to run a general ad manager in PHP or something, and than have it load specific ads using javascript or most likely flash to create the effect youre talking about.
check out a script directory (http://www.codango.com/, for example) to find a good ad manager to work with first. It'll probably save you some effort from hand coding every ad into your pages down the road.
Here is a link directly to the ad management stuff...I'm assuming you'll be using PHP...hopefully I'm right![]()
http://codango.com/php/dir/webapps/admanage/
thats my $0.02 anyway....for what its worth... (two cents i guess, right? lol)
I dont know much about flash or javascript, so my help ends there. Maybe someone who does will be correcting everything I've said? lol
check this link and you will see an example of the pop up that i would like to create URL: http://wowpopup.com/ (click where it says "CLICK HERE TO SEE AGAIN"). i am looking for something similar to this but more dynamic where the pop up has some animation. i'm preety sure you've seen pop ups like this before.
Does anyone have an idea of how i can do this.
hey, im also looking for a code that is the same as dyn-web's sliding layer onclick. im having problems with positioning. id appreciate anything that you can find. much thanks.
[SIGNATURE AGAINST TOS REMOVED BY MODS]
Last edited by djr33; 10-08-2007 at 07:04 AM.
so nobody have any thought on how i can accomplish this.
That's just using CSS and a bit of JS.
Sample code:
Replace 3 with whatever number of seconds you want before the pop-up disappears.HTML Code:<style type="text/css"> #mybox { position:absolute; top:100px; left:100px; width:300px; height:300px; display:none; background-color:#FFFFFF; border:solid 1px #000000; } </style> <div id="mybox">Hi.</div> <script type="text/javascript"> function removeAd() { document.getElementById('mybox').style.display="none"; } setTimeout(removeAd,3*1000); </script>
Peter - alotofstuffhere[dot]com - Email Me - Donate via PayPal - Got spare hardware? Donate 'em to me :) Just send me a PM.
Currently: enjoying the early holidays :)Read before posting: FAQ | What you CAN'T do with JavaScript | Form Rules | Thread Title Naming Guide
Bookmarks