本文实例讲述了javascript实现的固定位置悬浮窗口。分享给大家供大家参考。具体实现方法如下:
Fixed固定位置的悬浮 * { font-size:12px; font-family:Verdana,宋体; } html, body { margin:0px; padding:0px; overflow:hidden; } .b { margin:0px; padding:0px; overflow:auto; } .line0 { line-height:20px; background-color:lightyellow; padding:0px 15px; } .line1 { line-height:18px; background-color:lightblue; padding:0px 10px; } .w { position:absolute; right:10px; bottom:10px; width:160px; height:240px; overflow:hidden; border:2px groove #281; cursor:default; -moz-user-select:none; } .t { line-height:20px; height:20px; width:160px; overflow:hidden; background-color:#27C; color:white; font-weight:bold; border-bottom:1px outset blue; text-align:center; } .winBody { height:218px; width:160px; overflow-x:hidden; overflow-y:auto; border-top:1px inset blue; padding:10px; text-indent:10px; background-color:white; } Demo Win - Fixed Hello world https://www.jb51.net/
希望本文所述对大家的javascript程序设计有所帮助。



