EMLOG文章页添加上一篇下一篇按钮代码

admin 轻心小站 关注 LV.19 运营
发表于emlog版块 教程

本文分享的是一篇很多EMLOG站长都在找的网站文章内页添加上一篇与下一篇按钮。按钮代码:<style> #prevlog{width:40px;height:80px;ba

本文分享的是一篇很多EMLOG站长都在找的网站文章内页添加上一篇与下一篇按钮。
按钮代码:

<style>
#prevlog{width:40px;height:80px;background:url(http://img.itc.cn/photo/olZ77IqbZHL) no-repeat; position:fixed;left:50%;top:380px;margin-left:-530px;filter:alpha(Opacity=60);-moz-opacity:0.6;opacity:0.6;z-index:9999;}
#prevlog a,#nextlog a{width:40px;height:80px;display:block;}
#prevlog:hover,#nextlog:hover{filter:alpha(Opacity=100);-moz-opacity:1;opacity:1;}
#nextlog{width:40px;height:80px;background:url(http://img.itc.cn/photo/olZ77phsS28) no-repeat; position:fixed;left:50%;top:380px;margin-left:490px;filter:alpha(Opacity=60);-moz-opacity:0.6;opacity:0.6;z-index:9999;}
*html #prevlog, *html #nextlog{position: absolute;top:expression(eval(document.documentElement.scrollTop));}
</style>
<?php extract($neighborLog);if($prevLog){
echo '<div id="prevlog"><a href="'.Url::log($prevLog['gid']).'" title="'.$prevLog['title'].'"></a></div>';}
else{
echo '<div id="prevlog"><a href="#" title="没有上一篇了"></a></div>';};
if($nextLog){
echo '<div id="nextlog"><a href="'.Url::log($nextLog['gid']).'" title="'.$nextLog['title'].'"></a></div>';}
else{
echo '<div id="nextlog"><a href="#" title="没有下一篇了"></a></div>';};?>


说明:
把以下代码复制粘贴到当前模板的echo_log.php文件的任意一个位置即可。
左右按钮图片下方已经提供,自行上传到服务器,再更改一下代码里的图片地址为正确的图片地址即可。


文章说明:

本文原创发布于探乎站长论坛,未经许可,禁止转载。

题图来自Unsplash,基于CC0协议

该文观点仅代表作者本人,探乎站长论坛平台仅提供信息存储空间服务。

评论列表 评论
发布评论

评论: EMLOG文章页添加上一篇下一篇按钮代码

粉丝

0

关注

0

收藏

0

已有0次打赏