在WP主题文件夹(默认是“wp-content/themes/主题”)下的index.php里加上如下代码:
1 2 3 |
<div class="cat"> <img src="http://lvdong.xin/.../cat.gif"/> #动图路径 </div> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<style> .cat{ width: 200px; height: 200px; margin-top:100%; display:block; position: absolute; left:0px; position: fixed; right: 10px; z-index: 999; bottom: 10px; } </style> |