js代码特效(简单js特效代码大全)

http://www.itjxue.com  2023-02-11 00:58  来源:未知  点击次数: 

一个网页怎么显示多个js特效

首先你要保证页面的标签id不能重名,这个是最重要一点...

其实多个特效很好实现,就看你js代码怎么写,以及逻辑实现了

比如我可以让页面弹出对话框后隐藏一个层,或者侧边栏广告开始随机页面滚动等等

其实都是可以的。

求js特效,网页特效,能判定分辨率的代码

script?src="jquery.js"/script

script

$(".quanping").width($(window).width());

$(".quanping").height($(window).height());

/script

div?class="quanping"?style="?border:1px?solid?red;?overflow:hidden;"

/div

全屏的那个就是

JS特效代码,让网页打开时候最小化,6秒后最大化。追加100分

object id=hh1 classid="clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11"

param name="Command" value="Minimize"/object

input type=button value=最小化 onclick=hh1.Click()

这个你可以试试。但只针对ie,其他的多标签浏览器似乎不能实现

急求js特效,求高手解答!

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"

""

html

head

meta http-equiv="Content-Type" content="text/html; charset=gbk"

titletest/title

/head

body onload="init();"

table width="100%" border="0" cellpadding="0" cellspacing="0"

trtdtest page/td/tr

/table

div id="divContent" style="position: absolute; top: 200px; filter: alpha(opacity=70); background-Color:green;display:none;" !-- opacity=70调整透明度,数值自定义 --

table width="200" height="100"

tr

tdusername/td

tdinput type="text"/td

/tr

tr

tdpassword/td

tdinput type="password"/td

/tr

tr

tdinput type="button" onclick="closeWin();" value="ok"/td

tdinput type="button" onclick="closeWin();" value="cancle"/td

/tr

/table

/div

/body

script language="javascript"

function init()

{

setTimeout("showWin()", 1000); //1000表示1秒钟

}

function showWin()

{

var div = document.getElementById("divContent");

div.style.display = "block";

}

function closeWin()

{

var div = document.getElementById("divContent");

div.style.display = "none";

}

/script

/html

先试试吧,只是一个简单的特效,要移动这个对话框的话可以自己查找,baidu上很多

(责任编辑:IT教学网)

更多