网页特效代码网站 特效

什么是网页特效

什么是网页特效?
网页特效就是用网页脚本(javascript,vbscript)来编写制作动态特殊效果,通常被人们称为网页特效.
网页特效运行于客户端的浏览器,所见所得.同样,网上很多的资源网站收集了大量网页特效代码,提供给很多做网页设计开发的网友们使用.

有没有人知道网页制作特效的代码介绍的比较好的网站,推荐我看看!

http://www.helpor.net/
http://www.baron.com.cn/javascript/
http://js.wanxu.com/
http://www.dabaoku.com/texiao/
http://www.8695.com/netweb/
http://www.sgzld.com/life.htm
http://www.3lian.com/zl/3lian/3/
你自己选吧,里面什么都有

怎样使用网页设计模板和网页特效代码

使用网页设计模板和网页特效代码,一般这种模版都会给一定提示,例如在什么位置去插入,然后告诉通过一个什么函数来调用,然后只需要在DW中打开模版,根据自己需要的地方,更改文字,或者是图片就可以了。

如何快速制作网页特效

1.打开你需要的带特效的网站,单击菜单栏(上面)的查看-源文件.然后找到你需要的特效的代码段(用dreamweaver软件容易找些),复制~粘贴~改代码(最好先了解javascript语言~否则比较麻烦)
2.先获得你要变换图片的控件(用ById),然后写个方法~在里面写个循环,或者用随机数获得图片并且附给你要变图片的控件,(所有的图片名必须有规律~比如1.jpg,2.jpg),最后在方法里写个计时器setTimeOut(方法名,每过多少毫秒执行一次)
3这些东西必须要有JAVAscript的基础~否则建议先学去

求网页特效源代码,菜鸟跪求~~!

1)贴图:《img src=“图片地址“》
2)字体加粗:《b》写上你想写的字《/b》
3)字体斜体:《I》写上你想写的字《/I》
4)字体下划线: 《U》写上你想写的字《/U》
5)字体删除线: 《s》写上你想写的字《/s》
6)字体加大: 《BIG》写上你想写的字《/BIG》
7)贴音乐:《embed src=“音乐文件地址“ width=“宽度“ height=“高度“
autostart=false》
8)贴flash: 《embed src=“flash文件地址“ width=“宽度“ height=“高度“》
9)贴影视文件:《img dynsrc=“影视文件地址“ width=“宽度“ height=“高度“
start=mouseover》
**注意:以上文件地址要包括文件
10)换行:《br》
11)段落:《p》段落《/p》
18)原始文字样式:《pre》正文《/pre》
19)换帖子背景:《body background=“背景图片地址“》
20)固定帖子背景不随滚动条滚动:《body background=“背景图片地址“ body
bgproperties=FIXED》
21)定制帖子背景颜色:《body bgcolor=“#value“》
22)帖子背景音乐:《bgsound=“背景音乐地址“ loop=infinite》
23)贴网页:《IFRAME src=“相关地址“ width=“宽度“ height=“高度
“》《/IFRAME》
24)字体上标:文字《sup》上标文字《/sup》
25)字体下标:文字《sub》下标文字《/sub》

网页效果源代码的网站

去懒人图库看下“我这里有`写下了`你看下`图片自己加下“
《html》
《head》
《title》网页特效|Linkweb.cn/Js|—紧随鼠标的流动彩色字串《/title》
《meta http-equiv=“Content-Type“ content=“text/html; charset=gb2312“》
《style》.spanstyle {
COLOR: #0066ff; FONT-FAMILY: 隶书; FONT-SIZE: 14pt; FONT-WEIGHT: normal; POSITION: absolute; TOP: -50px; VISIBILITY: visible
}
《/style》
《/head》
《body bgcolor=“#ffffff“ onload=“javascript:pageonload()“》
《script language=“javascript“》
var message=“紧随鼠标的流动彩色字串!“;
var x,y;
var step=12;
var flag=0;
message=message.split(““);
var xpos=new Array();
for (i=0;i《=message.length-1;i++) {
xpos[i]=-50;
}
var ypos=new Array();
for (i=0;i《=message.length-1;i++) {
ypos[i]=-50;
}
function handlerMM(e) {
x = (document.layers) ? e.pageX : document.body.scrollLeft+event.clientX+10;
y = (document.layers) ? e.pageY : document.body.scrollTop+event.clientY;
flag=1;
}
function makesnake() {
if (flag==1 && document.all) {
for (i=message.length-1; i》=1; i–) {
xpos[i]=xpos[i-1]+step;
ypos[i]=ypos[i-1];
}
xpos=x+step;
ypos=y;
for (i=0; i《=message.length-1; i++) {
var thisspan = eval(“span“+(i)+“.style“);
thisspan.posLeft=xpos[i];
thisspan.posTop=ypos[i];
thisspan.color=Math.random() * 255 * 255 * 255 + Math.random() * 255 * 255 + Math.random() * 255;
}
}
else if (flag==1 && document.layers) {
for (i=message.length-1; i》=1; i–) {
xpos[i]=xpos[i-1]+step;
ypos[i]=ypos[i-1];
}
xpos=x+step;
ypos=y;
for (i=0; i《message.length-1; i++) {
var thisspan = eval(“document.span“+i);
thisspan.left=xpos[i];
thisspan.top=ypos[i];
thisspan.color=Math.random() * 255 * 255 * 255 + Math.random() * 255 * 255 + Math.random() * 255;
}
}
}
《/script》
《script language=“javascript“》
for (i=0;i《=message.length-1;i++) {
document.write(“《span id=’span“+i+“’ class=’spanstyle’》“);
document.write(message[i]);
document.write(“《img src=’1104.gif’》“);
document.write(“《img src=’1123.gif’》“);
document.write(“《img src=’1124.gif’》“);
document.write(“《/span》“);
}
if (document.layers) {
document.captureEvents(Event.MOUSEMOVE);
}
document.onmousemove = handlerMM;
《/script》
《script
language=“javascript“》
function pageonload() {
makesnake();
window.setTimeout(“pageonload();“, 2);
}
《/script》
《/body》
《/html》