jquery页面滚动左侧悬浮固定菜单跟随效果代码
代码语言:html
所属分类:菜单导航
代码描述:jquery页面滚动左侧悬浮固定菜单跟随效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> *{ margin: 0; padding: 0; } body{ background: #ddd; } ul{ list-style: none; } a{ text-decoration: none; } .nav{ background: #fff; width: 100%; height: 100px; font-size: 20px; line-height: 100px; text-align: center; border-bottom: 1px solid #f60; } .box{ margin: 0 auto; width: 1200px; } .fl_l{ width: 200px; float: left; border: 1px solid #f4f4f4; background: #fff; } .fl_l li a{ border-bottom: 1px solid #eee; text-align: center; display: block; color: #333; font-size: 14px; line-height: 60px; } .fl_l li.active a{ background: #f60; color: #fff; } .fl_r{ float: right; width: 960px; } .fl_r li{ margin-bottom: 30px; background: #fff; font-size: 50px; line-height: 300px; display: block; text-align: center; } .banner{ background: #fff; width: 100%; height: 600px; font-size: 40px; line-height: 600px; text-align: center; margin-bottom: 30px; } </style> </head> <body> <div class="box"> <ul class="fl_l"> <li class="active"><a href="##">菜单1</a></li> <li><a href="##">菜单2</a></li> <li><a href="##">菜单3</a></li> <li><a href="##">菜单4</a></li> </ul> <ul class="fl_r"> <li style="height: 600px;">菜单1内容</li> <li style="height: 600px;">菜单2内容</li> <li style="height: 400px;">菜单3内容</li> <li style=.........完整代码请登录后点击上方下载按钮下载查看
网友评论0