头闻号

泰州市铁猫涂料有限公司

建筑涂料|船舶涂料|特种涂料|其他涂料|汽车涂料|木工油漆

首页 > 新闻中心 > 科技常识:纯css实现鼠标滑过弹出层效果
科技常识:纯css实现鼠标滑过弹出层效果
发布时间:2024-10-05 07:59:17        浏览次数:4        返回列表

今天小编跟大家讲解下有关纯css实现鼠标滑过弹出层效果 ,相信小伙伴们对这个话题应该有所关注吧,小编也收集到了有关纯css实现鼠标滑过弹出层效果 的相关资料,希望小伙伴们看了有所帮助。

复制代码代码如下: <!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type"content="text/html; charset=utf-8"/> <title>无标题文档</title> <style type="text/css"> *{margin:0; padding:0;} body{font-size:12px; font-family:"Times New Roman", Times, serif; background-color:#333;} #main{margin:100px auto; width:300px;} #main ul{list-style:none;} #main ul li{line-height:20px; border-bottom:1px dashed #FC0;} #main ul li a{color:#E7E7E7; text-decoration:none; position:relative; display:block;} <span style="color:#FF0000"> #main ul li a div{display:none;} #main ul li a:hover{color:#FFF;} #main ul li a:hover div{position:absolute; left:280px; top:-40px; background-color:#FFF; display:block; width:300px; height:100px; color:#000; overflow:hidden;} #main ul li a:hover div dt{float:left; width:8px; background:url(234.gif) center no-repeat;height:100px; display:block; background-color:#333;} #main ul li a:hover div dd{float:right ; width:270px; height:auto; line-height:18px; padding:6px 10px;}</span> </style> </head> <body> <p> </p> <p> </p> <div id="main"> <ul> <li><a href="">Customizing Form Objects and Validating Forms <div><dt></dt> <dd>Rollovers are very easy using Dreamweaver. All you need to do is export two images from Fireworks (the image itself and the rollover image). Next, in Dreamweaver, click on Insert>Rollover Image. Give a name to the image, choose the images from the folder icon and finally give the link to the image. That's it! You've now got a great looking effect for your site. </dd> </div> </a> </li> <li> <a href="">Best Time Saving Tips in Dreamweaver <div><dt></dt> <dd>Before uploading your site you need to make sure that there are no dead links in the site. You can do this by going to your site map, right clicking on any of the files and then clicking on 'check links'. Now you can choose to either check links in the entire site or within the selected file or folder. If there are any dead links you can fix them by using the folder icon to select the right files. </dd> </div> </a> </li> <li> <a href="">Customizing Form Objects and Validating Forms <div><dt></dt> <dd>After resizing an image in Dreamweaver, click on Commands>Optimize Image in Fireworks. You will get a dialog box saying 'Editing image.gif. Do you wish to use an existing Fireworks document as the source of image.gif.' Click on No and then click Update. The image is now updated and optimized in Dreamweaver. This saves you the trouble of opening the image in Fireworks, resizing it and exporting it again. </dd> </div> </a> </li> <li> <a href="">Dreamweaver Tips & Tutorials <div><dt></dt> <dd>We've shared some really cool tips on Macromedia Dreamweaver in this article. They are handy tips that all Dreamweaver users should know about to allow more flexibility and creativity while designing sites in Dreamweaver. </dd> </div> </a> </li> <li> <a href="">Jump Menus, Pop Up Windows and Swap Images <div><dt></dt> <dd>Rollovers are very easy using Dreamweaver. All you need to do is export two images from Fireworks (the image itself and the rollover image). Next, in Dreamweaver, click on Insert>Rollover Image. </dd> </div> </a> </li> </ul> </div> </body> </html>

来源:爱蒂网