jQuery实现右上角点击后滑下来的竖向菜单
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
<pre class="inline:true class:language-html decode:1 " ><!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=uft-8" /> <title>jQuery实现右上角点击后滑下来的竖向菜单</title><br /><base target="_blank" /> <style> #opciones { z-index: 7000; position: fixed; padding-bottom: 10px; padding-left: 10px; width: 120px; padding-right: 10px; font: 12px/140% Arial, Helvetica, sans-serif; background: #e7e7e7; color: #999; top: 0px; right: 0px; padding-top: 10px; } #opciones H2 { border-bottom: #fff 1px solid; padding-bottom: 3px; margin: 0px 0px 3px; padding-left: 0px; padding-right: 0px; color: #666; font-size: 16px; padding-top: 0px; } #opciones H3 { padding-bottom: 0px; text-indent: 0px; margin: 3px 0px; padding-left: 0px; padding-right: 0px; height: 15px; color: #666666; padding-top: 0px; } #opciones P { font-size: 12px; } #opciones A { color: #999; text-decoration: none; } #opciones A:hover { background: #666666; color: #fff; } #settings { z-index: 8000; position: fixed; text-indent: -99999px; width: 43px; display: block; background: url(http://keleyi.com/keleyi/phtml/jqtexiao/22/opciones.gif) no-repeat 0px 0px; height: 43px; top: 0px; cursor: pointer; right: 0px; } #settings:hover { background: url(http://keleyi.com/keleyi/phtml/jqtexiao/22/opciones.gif) no-repeat 0px -86px; } .cerrar { background: url(http://keleyi.com/keleyi/phtml/jqtexiao/22/opciones.gif) no-repeat 0px -43px !important; } #opciones ul { padding: 0px; margin: 0px; } #opciones li { list-style: none; text-align: left; } </style> <script type="text/javascript" src="http://keleyi.com/keleyi/pmedia/jquery/jquery-1.11.0.min.js"></script> <script type="text/javascript"> $(document).ready(function () { $('#opciones').hide(); $('#settings').click(function () { $('#opciones').slideToggle(); $(this).toggleClass("cerrar"); }); }); </script> </head> <body style="text-align: center"> <div id="settings"> Settings</div> <div id="opciones"> <ul> <li><a href="http://keleyi.com/a/bjad/w7bbn7nw.htm">jQuery 1.11.0下载</a></li> <li><a href="http://keleyi.com/a/bjad/p7gfevir.htm">jquery设置title属性</a></li> <li><a href="http://keleyi.com/a/bjad/emf1jc13.htm">jquery日期输入插件</a></li> <li><a href="http://keleyi.com/a/bjad/42v7nii9.htm">jQuery下拉日期选择器</a></li> <li><a href="http://keleyi.com/a/bjad/liuvpkke.htm">jquery图片上传前剪裁</a></li> <li><a href="http://keleyi.com/a/bjad/4kwkql05.htm">jquery背景自动切换</a></li> <li><a href="http://keleyi.com/a/bjad/0ckt6xm9.htm">jQuery unbind() 方法</a></li> <li><a href="http://keleyi.com/a/bjad/pmryuvga.htm">jquery产品多图展示</a></li> <li><a href="http://keleyi.com/a/bjad/q2ee2xyt.htm">jquery图片放大镜插件</a></li></ul> </div> <div><h2>jQuery实现右上角点击后滑下来的竖向菜单</h2> <br /> 请点击右上角的图标 </div> </body> </html> |