Show and hide part of the web page Expand and collapse page special effects
Release: 2016-07-25 09:02:35
Original
2913 people have browsed it
- Web Resource Code Station Tips: Test the special effects of displaying part of the hidden web page, expanding and collapsing the page, and see the effect - because it is necessary to refresh the
- to load JS Partial content web page special effects-dyunr.com
- * { margin:0; padding:0;}
- body { text-align:center; font:75% Verdana, Arial, Helvetica, sans- serif;}
- h1 { font:125% Arial, Helvetica, sans-serif; text-align:left; font-weight:bolder; background:#333; padding:3px; display:block; color:#99CC00}
- . class1 { width:40%; background:#CCC; position:relative; margin:0 auto; padding:5px;}
- span { position:absolute; right:10px; top:8px; cursor:pointer; color:yellow;}
- p { text-align:left; line-height:20px; background:#333; padding:3px; margin-top:5px; color:#99CC00}
- #class1content { height:300px;overflow:hidden}
- < /style>
- <script></li>
<li>function $(element){</li>
<li>return element = document.getElementById(element);</li>
<li>}</li>
<li>function $D(){</li>
<li>var d=$('class1content');</li>
<li>var h= d.offsetHeight;</li>
<li>var maxh=300;</li>
<li>function dmove(){</li>
<li>h+=50; //Set the speed of layer expansion 23sc.cn</li>
<li>if(h>=maxh){</li>
<li>d.style.height='300px' ;</li>
<li>clearInterval(iIntervalId);</li>
<li>}else{</li>
<li>d.style.display='block';</li>
<li>d.style.height=h+'px';</li>
<li>}</li>
<li>}</li>
<li>iIntervalId=setInterval(dmove,2);</li>
<li>} </li>
<li>function $D2(){</li>
<li>var d=$('class1content');</li>
<li>var h=d.offsetHeight;</li>
<li>var maxh=300;</li>
<li>function dmove(){</li>
<li>h-=50;//Set layer shrinkage Speed 23sc.cn</li>
<li>if(h<=0){<li>d.style.display='none';<li>clearInterval(iIntervalId);<li>}else{<li>d.style.height=h+'px';<li>}<li>} <li>iIntervalId=setInterval(dmove,2);<li>}<li>function $use(){<li>var d=$('class1content');<li>var sb=$('stateBut');<li>if(d.style.display= ='none'){<li>$D();<li>sb.innerHTML='expand';<li>}else{<li>$D2();<li>sb.innerHTML='shrink';<li>}<li>}<li></script>
Alone expand hidden effect
- Expand
Show Hide Part of the Web PageExpand Collapse Page Special Effects==The little snail asked her mother: Why do we have to bear this burden since we were born? What about the hard and heavy shell?
- Mom: Because our body does not have the support of bones, we can only crawl, but not very fast. So you need the protection of this shell!
- Little Snail: Sister Caterpillar has no bones and can’t crawl fast. Why doesn’t she have to carry this hard and heavy shell?
- Mom: Because the caterpillar sister can turn into a butterfly, 23sc.cn the sky will protect her.
- Little snail: But the earthworm brother doesn’t have bones to crawl fast, and he won’t turn into a butterfly. Why doesn’t he carry this hard and heavy shell?
- Mom: Because the earthworm brother can drill into the earth, and the earth will protect him.
- The little snail cried: 23sc.cn We are so pitiful, neither the sky nor the earth protects us.
- Mother Snail comforted him: So we have shells! We do not rely on heaven or earth, we rely on ourselves.
- Does it work? Thank you for supporting our web resource site, our website is http://www.dyunr.com
-
- This article comes from: web resource network (www.dyunr.com) Please retain the original source for reprinting and copying, thank you! For detailed source reference: http://www.dyunr.com/Code/dm8/164.html
Copy code
|
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31