HighDots Forums  

How do you make expandable banner ad?

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss How do you make expandable banner ad? in the Macromedia Dreamweaver forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
P.
 
Posts: n/a

Default How do you make expandable banner ad? - 07-12-2004 , 09:48 PM






Hi there,

I am trying to figure out how to create an expandable window that opens within a webpage such as shown in the Sony ad at http://www.zdnet.com/

Any thoughts?

P

Reply With Quote
  #2  
Old   
Linda Rathgeber-TMM
 
Posts: n/a

Default Re: How do you make expandable banner ad? - 07-13-2004 , 06:16 AM






P. wrote:

Quote:
Hi there,

I am trying to figure out how to create an expandable window that opens within a webpage such as shown in the Sony ad at http://www.zdnet.com/

Any thoughts?
That's done in Flash.


--
Cheers,
Linda Rathgeber
----------------------------------------------------------------------
Learn Fireworks Visual Effects with "RAZZLE DAZZLE"
http://www.webdevbiz.com/pwf/
Victoriana | http://www.projectseven.com
Playing with Fire | http://www.playingwithfire.com
Team MM Fireworks Volunteer | www.macromedia.com/go/team
----------------------------------------------------------------------



Reply With Quote
  #3  
Old   
Joe {RoastHorse}
 
Posts: n/a

Default Re: How do you make expandable banner ad? - 07-13-2004 , 07:57 AM



use css to show/hide the expandable bit:

#divExpand.show {
display: block;
}
#divExpand.hide {
display: none;
}

<div id="divBanner"></div>
<div id="divExpand" class="hide"></div>
<div id="divContent"></div>

joe





P. wrote:
Quote:
Hi there,

I am trying to figure out how to create an expandable window that opens within a webpage such as shown in the Sony ad at http://www.zdnet.com/

Any thoughts?

P

Reply With Quote
  #4  
Old   
Joe {RoastHorse}
 
Posts: n/a

Default Re: How do you make expandable banner ad? - 07-13-2004 , 08:17 AM



or...
use css (and js) to change the height of the div (set overflow to
hidden). eg:

#divExpand {
overflow: hidden;
}
#divExpand.show {
height: 300px;
}
#divExpand.hide {
height: 60px;
}

<div id="divExpand" class="hide"></div>
<div id="divContent"></div>

joe





Joe {RoastHorse} wrote:

Quote:
use css to show/hide the expandable bit:

#divExpand.show {
display: block;
}
#divExpand.hide {
display: none;
}

div id="divBanner"></div
div id="divExpand" class="hide"></div
div id="divContent"></div

joe





P. wrote:

Hi there,

I am trying to figure out how to create an expandable window that
opens within a webpage such as shown in the Sony ad at
http://www.zdnet.com/

Any thoughts?

P

Reply With Quote
Reply




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.