感谢您的支持,我会继续努力的!
打开微信扫一扫,即可进行扫码打赏哦
点我查看本站打赏源码!
Powered by RUNCODEX.COM,学的不仅是技术,更是梦想!!!
<h1>Coda Effect With CSS3</h1>
<br/>
<ul id="bubblemenu">
<li>
Penn Jillett
<div>
My favorite thing about the Internet is that you get to go into the private world of real creeps without having to smell them.
</div>
</li>
Thomas Watson
I think there is a world market for maybe five computers.
Bill Gates
640K ought to be enough for anybody.
Sam Ewing
Computers are like bikinis. They save people a lot of guesswork.
</ul>
<div style=" color:#000;width:600px;margin:0 auto; text-align:center; font-size:12px;">
输入 JavaScript 代码……
xxxxxxxxxx
body{
background:#D6D3C9;
color:#383835;
font-family:Arial, Arial, Helvetica, sans-serif;
}
#bubblemenu li {
display: inline;
margin-left: 15px;
cursor:pointer;
#bubblemenu li > div {
width: 150px;
min-height: 100px;
position: absolute;
margin-left: -120px;
padding: 5px;
visibility:hidden;
opacity: 0;
margin-top: -125px;
background: #ffffff;
font-size:1em;
/* Setting the border-radius property for all Browsers */
-moz-border-radius: 5px; /* Firefox */
-webkit-border-radius: 5px; /* Safari and Chrome */
border-radius: 5px; /* Browsers that Support it like Opera */
/* Setting the box-shadow property for all Browsers */
-moz-box-shadow: 0 0 8px gray; /* Firefox */
-webkit-box-shadow: 0 0 8px gray; /* Safari and Chrome */
filter: progid:DXImageTransform.Microsoft.Shadow(color='#272229', Direction=135, Strength=3); /* IE */
box-shadow: 0 0 8px gray; /* Browsers that Support it like Opera */
/* Setting the transition property for all Browsers */
-moz-transition: all 0.5s ease-in-out; /* Firefox */
-webkit-transition: all 0.5s ease-in-out; /* Safari and Chrome */
-o-transition: all 0.5s ease-in-out; /* Opera */
transition: all 0.5s ease-in-out; /* Browsers that Support it */
#bubblemenu li:hover > div {
visibility:visible;
opacity: 1;
margin-top: -150px;