ecshop返回顶部的代码 纯CSS超简单

这个“ ECSHOP返回顶部的代码”,是用纯CSS实现的,实现起来超级简单。

ecshop返回顶部的代码 纯CSS超简单

看到了吧,这个“回顶部”的小按钮永远漂浮在窗口的右下角。

实现方法:


修改  themes/模板文件夹/library/page_footer.lbi 文件

在最末尾加入以下代码即可

<style>
.to_top{width:20px;height:59px;right:40px;position:fixed;bottom:50px;_position:absolute;_top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-134))}
</style>
<a href="#" class="to_top" title="返回顶部"><img src="http://www.ecshop120.com/images/gotop.gif" width="20" height="59" /></a>

经测试  完美兼容各大浏览器。

你可能感兴趣的:(ecshop返回顶部的代码 纯CSS超简单)