CSS_导航栏+固定浮动的回到顶部按钮

来源:互联网 发布:清理后台的软件 编辑:程序博客网 时间:2024/05/21 00:47

导航栏

CSS 导航栏:http://www.runoob.com/css/css-navbar.html

鼠标点击链接过程颜色变化设置

<style type="text/css">a:link {color:#000000;}      /* 未访问链接*/a:visited {color:#00FF00;}  /* 已访问链接 */a:hover {color:#FF00FF;}  /* 鼠标移动到链接上 */a:active {color:#0000FF;}  /* 鼠标点击时 */<style>

固定浮动的回到顶部按钮

body{background-attachment:fixed;}
<style type="text/css">body {background-image:url("button.jpg");background-repeat:no-repeat;background-position:bottom right;background-attachment:fixed; <!--这个设置让按钮不随页面滚动,固定不变-->}</style>
如果不行就在页面中添加图片,然后用js完成链接跳转;或者试试给链接添加图片