- Tutorial requested by Ley Ting -
Blog Template User
1. 布局 - 添加小工具 - HTML/JavaScript
2. 把你要的 marquee effect 代码添加进去
Blogskin User
1. 模板
2. 把你要的 marquee effect 代码添加在你的 sidebar 代码里
# 效果 1 - 文字向上 / 向下移动
<marquee behavior="scroll" direction="up / down" height="75px">内容</marquee>
# 效果 2 - 文字向左 / 向右移动
<marquee behavior="scroll" direction="left / right" width="225px">内容</marquee>
# 效果 3 - 图片 Marquee Effect
<marquee behavior="scroll" direction="left / right / up / down" height="75px" width="225px"><img src="http://img.juhife542d.com图片网址"></marquee>
# 效果 4 - 图片 + 文字 Marquee Effect
<marquee behavior="scroll" direction="left / right / up / down" height="75px" width="225px"><img src="http://img.juhife542d.com图片网址"> 文字内容</marquee>
# 效果 5 - 有背景的 Marquee Effect
<marquee behavior="scroll" direction="left / right / up / down" height="75px" width="225px" style="background: url(背景网址);">内容</marquee>
# 效果 6 - 鼠标指着时,停止 Marquee Effect
<marquee behavior="scroll" direction="left / right / up / down" height="75px" width="225px" onmouseout="this.start()" onmouseover="this.stop()"></marquee>
小解释
红色代码:选择一个 direction, 删掉剩下的
蓝色代码:Marquee 内容的高度 / 宽度
紫色代码:图片 / 背景网址
# 内容不仅限于文本 / 图片。任何小工具(链接 / 播放器 / 状态等)都可以自己添加的哟 :)
其实 Marquee 效果是个很容易明白的效果来的。大家其实还可以选择自己喜欢的美化代码添加进去的哟 ^-^ 以上给的例子只是基本的而已,更深入复杂的代码 / 效果,大家可以自己去研究的嗯。
Categories: Bii の语法笔记, 关于小工具