❶ 谁有400电话申请的网站源码啊后台要简单易用的啊 急求
我有400电话受理中心400num这个网站的源代码,后台挺简单的,你要的话3000给你吧
❷ 那里有免费网站源码和免费空间啊
那要看你做什么类型的网站了,你去站长站上就有好多免费的源码的,不过免费空间一般不好找,都是能让你用几天或1月左月就找各种理由封站了,就算有的不封站但是那些空间的访问速度肯定很卡,有时卡的都上不去哦,还是买个好点,
❸ 谁有s7-400源程序的密码破解软件呀
这种东西还是不要用的好,估计给破解了这个程序,你家电脑也给破解了得不偿失
❹ 网页设计常用HTML代码
网页设计常用HTML代码大全
HTML是用来描述网页的一种语言。下面我为大家分享HTML代码,希望对大家学习html代码有帮助!
忽视右键
<body oncontextmenu="return false">
或
<body style="overflow-y:hidden">
1.如何几秒后转到别的页面?
<META HTTP-EQUIV="Refresh" CONTENT="时间;URL=地址">
2.点击关闭窗口
<a href="javascript:top.window.close();">点击关闭窗口</a>!
3.请问如何去掉主页右面的滚动条?
<body scroll="no">
<body style="overflow-y:hidden">
4.请问如何做到让一个网页自动关闭.
<html>
<head>
<OBJECT id=closes type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11">
<param name="Command" value="Close">
</object>
</head>
<body onload="window.setTimeout(‘‘‘‘closes.Click()‘‘‘‘,10000)">
这个窗口会在10秒过后自动关闭,而且不会出现提示. </body>
如何在不刷新页面的情况下刷新css?
<style>
button{ color:#000000;}
</style>
<button onclick=document.styleSheets[0].rules[0].style.color=‘‘‘‘red‘‘‘‘>点击按钮直接修改style标签里button选择符使按钮改为红色</button>
请问如何让网页自动刷新?
在head部记入<META HTTP-EQUIV="Refresh" content="20">其中20为20秒后自动刷新,你可以更改为任意值。
5.如何让页面自动刷新?
方法一,用refresh
HTML 代码片段如下:
<head>
<meta http-equiv="refresh" content="5">
</head>
5表示刷新时间
[Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]
方法二,使用setTimeout控制
<img src=/logo.gif>
<script>
function rl(){
document.location.reload()
}
setTimeout(rl,2000)
</script>
6.如何让超链接没有下划线
在源代码中的<HEAD>…</HEAD>之间输入如下代码:
<style type="text/css"> <!--
a { text-decoration: none}
--> </style>
7.请问如何去掉IE的上下滚动条?
<body style=‘‘‘‘overflow:scroll;overflow-y:hidden‘‘‘‘>
</body>
8.怎样才能把RealPlayer文件在网页做一个试听连接?
<embed height=25src=51js.rm type=audio/x-pn-realaudio-plugin width=50 autostart="false" controls="PlayButton">
9.如何用html实现浏览器上后退按钮的功能?
<a href="java script:history.go(-1)">点击后退</a>
或者
<script> history.back() </script>
10.请问怎么在网页中改变鼠标的箭头形状?
HTML 代码片段如下:
<body>
<a href="#" style="cursor: auto;">auto</a><br>
<a href="#" style="cursor: crosshair ">crosshair </a><br>
<a href="#" style="cursor: default ">default </a><br>
<a href="#" style="cursor: hand ">hand </a><br>
<a href="#" style="cursor: move ">move </a><br>
<a href="#" style="cursor: e-resize ">e-resize </a><br>
<a href="#" style="cursor: ne-resize ">ne-resize </a><br>
<a href="#" style="cursor: nw-resize">nw-resize</a><br>
<a href="#" style="cursor: n-resize">n-resize</a><br>
<a href="#" style="cursor: se-resize">se-resize</a><br>
<a href="#" style="cursor: sw-resize">sw-resize</a><br>
<a href="#" style="cursor: s-resize">s-resize</a><br>
<a href="#" style="cursor: w-resize">w-resize</a><br>
<a href="#" style="cursor: text">text</a><br>
<a href="#" style="cursor: wait">wait</a><br>
<a href="#" style="cursor: help">help</a><br>
</body>
11.怎样不使用页面的缓存?即每一次打开页面时不是调用缓存中的东西
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
12.页面打开时自动弹出一个窗口的代码怎么写?
HTML 代码片段如下:
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script language="<B style="color:black;background-color:#A0FFFF">javascript</B>">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000" onLoad="MM_openBrWindow(‘‘‘‘http://www.35ui.cn/‘‘‘‘,‘‘‘‘,‘‘‘‘width=400,height=400‘‘‘‘)">
</body>
</html>
13.如何让我的页面出现一个会讲话的小人?Merlin
HTML 代码片段如下:
<HTML>
<HEAD>
<TITLE>默林</TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
</HEAD>
<BODY>
<p><OBJECT id=sims classid=CLSID:D45FD31B-5C6E-11D1-9EC1-00C04FD7081F>
</OBJECT>
<SCRIPT>
var MerlinID;
var MerlinACS;
sims.Connected = true;
MerlinLoaded = LoadLocalAgent(MerlinID, MerlinACS);
Merlin = sims.Characters.Character(MerlinID);
Merlin.Show();
Merlin.Play("Surprised");
Merlin.Speak("大家好");
Merlin.Play("GestureLeft");
Merlin.Think("我是默林!");
Merlin.Play("Pleased");
Merlin.Think("可爱吗?");
Merlin.Play("GestureDown");
Merlin.Speak("哈哈!");
Merlin.Hide();
function LoadLocalAgent(CharID, CharACS){
LoadReq = sims.Characters.Load(CharID, CharACS);
return(true);
}
</SCRIPT>
</p>
<p> </p>
<p>看此效果必须装有office2000!!!</p>
</BODY>
</HTML>
14.在页面中如何加入不是满铺的背景图片,拉动页面时背景图不动
HTML 代码片段如下:
<html><head>
<STYLE>
body {background-image:url(logo.gif);
background-repeat:no-repeat; background-position:center }
</STYLE>
</head>
<body bgproperties="fixed" >
</body>
</html>
[Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]
background-repeat:no-repeat; 是让背景图不占满整个页面
body bgproperties="fixed" 是拉动scroll时背景图不动
15.文本输入框什么属性能实现不可输入?
HTML 代码片段如下:
<input type="text" name="textfield" disabled>
或者
<input type="text" name="textfield" readonly>
16.如何禁止自己的页面在别人的框架里打开?
把以下代码加至你的<head>区
<script>
if (window.top!=self){
window.top.location=self.location
}
</script>
17.如何实现首页全屏幕显示?
HTML 代码片段如下:
<html>
<body><script language="<B style="color:black;background-color:#A0FFFF">javascript</B>">
var coolw=642
var coolh=400
var coolhuang=window.open("http://www.35ui.cn","coolhuang","width="+coolw+",height="+coolh+",
fullscreen=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0")
window.close()
</script></body></html>
18.如何监听一个窗口被关闭了?
HTML 代码片段如下:
<body onunload="alert(‘‘‘‘你关闭了这个窗口‘‘‘‘)">
19.如何禁止Ctrl+N?
HTML 代码片段如下:
<body onkeydown=return(!(event.keyCode==78&&event.ctrlKey))>
如何把页面加入用户的收藏夹?
HTML 代码片段如下:
<a href="<B style="color:black;background-color:#A0FFFF">javascript</B>:window.external.AddFavorite(‘‘‘‘http://www.35ui.cn‘‘‘‘,‘‘‘‘无忧脚本‘‘‘‘)">收藏无忧脚本</a>
如何在我的'页面中加入背景音乐?
IE: <bgsound src="*.mid" loop=infinite>
NS:<embed src="*.mid" autostart=true hidden=true loop=true>
*.mid你的背景音乐的midi格式文件
关于页面转换效果
<meta http-equiv="page-enter" content="revealTrans(Duration=4,Transition=23)">
或
<meta http-equiv="page-exit" content="revealTrans(Duration=4,Transition=23)">
说明:Transition=23是随机效果,另可以选0-22任一数字固定某个效果
如何设定打开页面的大小
HTML 代码片段如下:
<body onload="top.resizeTo(300,200);"><!--(width,height)-->
怎样双击滚屏,单击停止?
HTML 代码片段如下:
<html>
<head>
<title>新网页1</title>
</head>
<body>
<script language"<B style="color:black;background-color:#A0FFFF">javascript</B>">
var currentpos,timer;
function initialize()
{
timer=setInterval("scrollwindow()",10);
}
function sc(){
clearInterval(timer);
}
function scrollwindow()
{
currentpos=document.body.scrollTop;
window.scroll(0,++currentpos);
if (currentpos != document.body.scrollTop)
sc();
}
document.onmousedown=sc
document.ondblclick=initialize
</script>
<p>a</p><p>a</p><p>a</p><p>aa</p><p>aa</p><p>aa</p>
<p>aa</p><p>aa</p><p>aa</p><p>aa</p><p>aa</p><p>aa</p>
<p>aa</p><p>aa</p><p>aa</p><p>aa</p><p>aa</p><p>aa</p>
<p>aa</p><p>aa</p><p>aa</p><p>aa</p><p>a</p>
</body>
</html>
如何让body中的文字不被选中?
HTML 代码片段如下:
<body onselectstart="return false" >aaa</body>
如何让弹出的窗口不能关闭?
在新开的窗口中加入如下代码
<body onunload=open(location.href)>
</body>
如何让浏览器在保存页面时保存失败?
HTML 代码片段如下:
<NOSCRIPT>
<<B style="color:black;background-color:#ffff66">IFRAME</B> SRC="*.html">
</<B style="color:black;background-color:#ffff66">IFRAME</B>>
</NOSCRIPT>
表单中如何用图片按钮实现 reset?
<html>
<head>
<script>
function aaa(){
document.forms[0].reset()
}
</script>
</head>
<body>
<form>
<textarea rows="2" name="S1" cols="20"></textarea>
<input type="submit" values="提交" name="B1">
<image src="logo.gif" onclick=aaa()>
</form>
</body></html>
进入网页时弹出的信息对话框
<body onLoad="window.alert(‘‘‘‘欢迎光临本站‘‘‘‘)">
关闭窗口后弹出对话框
<body onUnload="window.alert(‘‘‘‘谢谢你的光临!欢迎下次再来!‘‘‘‘)">
告别提示
<body onUnload= alert("再见,感谢你的访问!")>
右键菜单的制作
<OBJECT id=menu type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11">
<PARAM name="Command" value="Related Topics,menu">
<PARAM name="Item1" value="动易;http://www.35ui.cn">
<PARAM name="Item2" value="搜狐;http://www.35hu.cn">
<PARAM name="Item3" value="新浪;http://www.35no.cn">
<PARAM name="Item4" value="网易;http://www.chinsgp.cn">
<PARAM name="Item5" value="互动学院;http://www.35ui.cn">
</OBJECT> <script> if (document.all) document.body.onmousedown=new Function("if (event.button==2) menu.Click();") </script>
下拉菜单
<object id=HHCtrl type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11"> <PARAM name="Command" value="Related Topics,Menu"> <PARAM name="Item1" value="aspease;http://www.35ui.cn"> <PARAM name="Item2" value="byhu;http://www.35ui.cn"> <PARAM name="Item3" value="lzz;http://www.35ui.cn"> </object> <a href=javascript:HHCtrl.Click() title="下拉菜单">下拉菜单</a>
;❺ 餐饮企业手机网站源码带后台的 但是不要那种一看就知道是dedecms织梦的那总 400分
您好,朋友,织梦云模板很高兴为您解答:
如果您需要餐饮手机网站源码,而又不想让人知道是dedecms,这种的话需要深度二次开发才行,也就是织梦官方目录那些都需要改变,php文件也需要重命名。
这块的话可以明确告诉您现在是没有的,而且这种开发需要耗费时间和精力,建议还是先网络一下网上是否有需要的再做打算。
希望我的回答能够帮到您!
❻ 网上哪里有网站的源代码可以下载
建议您使用速成网站,会打字就会建网站,操作简单,如不满意无需支付任何费用,强烈建议您先免费试用15天,看一下效果。
功能全面:网上商城、文章管理、会员注册及管理、论坛管理、在线购物与支付、留言本、流量统计、网站SEO推广、支持WAP手机网站等。
460元建站方案,可先免费试用15天。包括:国际顶级域名(60元/年)、速成网站全能型(空间2G,400元/年)、正规备案服务等。
可咨询我们在线客服,他会一步一步教您操作。我们已为15000多家用户提供了近6年优秀服务,更安全,更稳定。联系方式请点击我的用户名——用户资料。
❼ 网页源代码
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=(0031)http://www.oicq88.com/999/8.htm -->
<HTML><HEAD><TITLE>QQ聊天宝典--人的一生会遇上的四个人</TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312"><LINK
type=text/css rel=stylesheet>
<STYLE type=text/css>TD {
FONT-SIZE: 14px; LINE-HEIGHT: 28px
}
</STYLE>
<META content="MSHTML 6.00.6000.16735" name=GENERATOR><BGSOUND balance=0 src=""
volume=0 loop=infinite>
<STYLE>BODY {
SCROLLBAR-FACE-COLOR: #fb7c7c; SCROLLBAR-HIGHLIGHT-COLOR: #ffffff; SCROLLBAR-SHADOW-COLOR: #ffffff; SCROLLBAR-3DLIGHT-COLOR: #ffd4d4; SCROLLBAR-ARROW-COLOR: #ffffff; SCROLLBAR-TRACK-COLOR: #ffd4d4; SCROLLBAR-DARKSHADOW-COLOR: #ffffff
}
</STYLE>
<STYLE type=text/css>P {
FONT-SIZE: 9pt
}
TD {
FONT-SIZE: 9pt
}
SELECT {
FONT-SIZE: 9pt
}
A {
FONT-SIZE: 9pt; COLOR: black; TEXT-DECORATION: none
}
A:hover {
COLOR: red; TEXT-DECORATION: underline overline
}
.drop {
FILTER: dropshadow(color=000000, offx=1, offy=1, positive=1)
}
.drop2 {
FILTER: dropshadow(color=FFFFFF, offx=1, offy=1, positive=1)
}
</STYLE>
</HEAD>
<BODY bgProperties=fixed background=QQ聊天宝典--人的一生会遇上的四个人_files/story.jpg>
<SCRIPT language=VBScript>
dim w,t,p,mm,c,mr,dy,tmp,vs:vs=5:dy=1:p=1:mr="<BR><BR><BR>":c="<font color=white><B>|"&mr:Set w = document.body
sub tp
m=mid(t,p,1):if m="" then c=mr
if m="`" then m="":mm=mid(mm,1,len(mm)-1)
if m="<" then av=instr(mid(t,p),">"):m=mid(t,p,av):p=p+av-1
if m="&" then av=instr(mid(t,p),";"):m=mid(t,p,av):p=p+av-1
tmp=100:if m="." then tmp=400 else if m="," then tmp=200 else if m=" " then tmp=200
if w.scrollHeight-w.scrollTop>w.offsetHeight then w.scrollTop=w.scrollTop+int(dy):dy=dy+dy/vs else dy=1
mm=mm&m:w1.innerHTML=mm&c:p=p+1:if p<=len(t)+1 then SetTimeOut "tp",16+tmp else w.scroll="yes"
end sub
sub window_onload()
w.scroll="yes"
w.bgcolor="#A8A8A8"
w.style.cursor="crosshair"
'-------------------
t=w0.innerHTML:tp
end sub
</SCRIPT>
<DIV id=w0 style="DISPLAY: none; WIDTH: 671px; HEIGHT: 2186px">
<TABLE width="90%" align=center border=0>
<TBODY>
<TR>
<TD>
<P align=center><FONT face=华文行楷 color=#990066
size=4>人的一生会遇上的四个人</FONT><FONT face=华文行楷 color=#cc66ff
size=4><B></B></FONT></P>
<P
align=left></P>
<P align=left><FONT face=华文中宋 color=#ff99cc
size=3>
人生就是为了找寻爱的过程,每个人的人生都要找到四个人。</FONT></P>
<P align=left><FONT face=华文中宋 color=#3399ff><FONT
size=2>
</FONT></FONT><FONT face=华文中宋 size=3><FONT
color=#3399ff>第一个是自己,<BR>
第二个是你最爱的人,<BR>
第三个是最爱你的人,<BR>
第四个是共度一生的人.<BR>
首先会遇到你最爱的人,然后体会到爱的感觉;<BR>
因为了解被爱的感觉,所以才能发现最爱你的人;<BR>
当你经历过爱人与被爱,学会了爱,才会知道什么是你需要的,<BR>
也才会找到最适合你,能够相处一辈子的人。<BR>
但很悲哀的,在现实生活中,这三个人通常不是同一个人;<BR>
你最爱的,往往没有选择你;<BR>
最爱你的,往往不是你最爱的;<BR>
而最长久的,偏偏不是你最爱也不是最爱你的,<BR>
只是在最适合的时间出现的那个人。<BR>
你,会是别人生命中的第几个人呢?</FONT><FONT
color=#ff99cc><BR>
</FONT><FONT
color=#3399ff>没有人是故意要变心的,他爱你的时候是真的爱你,<BR>
可是他不爱你的时候也是真的不爱你了,<BR>
他爱你的时候没有办法假装不爱你;<BR>
同样的,他不爱你的时候也没有办法假装爱你
。<BR>
当一个人不爱你要离开你,<BR>
你要问自己还爱不爱他,<BR>
如果你也不爱他了,千万别为了可怜的自尊而不肯离开;<BR>
如果你还爱他,你应该会希望他过得幸福快乐,<BR>
希望他跟真正爱的人在一起,绝不会阻止,<BR>
你要是阻止他得到真正的幸福,就表示你已经不爱他了,<BR>
而如果你不爱他,你又有什么资格指责他变心呢?<BR>
爱不是占有,<BR>
你喜欢月亮,不可能把月亮拿下来放在脸盆里,<BR>
但月亮的光芒仍可照进你的房间。<BR>
换句话说,你爱一个人,也可以用另一种方式拥有,<BR>
让爱人成为生命里的永恒回忆,<BR>
如果你真爱一个人,就要爱他原来的样子—爱他的好,也爱他的坏:<BR>
爱他的优点,也爱他的缺点,<BR>
绝不能因为爱他,就希望他变成自己所希望的样子,<BR>
万一变不成就不爱他了。<BR>
真正爱一个人是无法说出原因的,<BR>
你只知道无论何时何地、心情好坏,你都希望这个人陪着你;<BR>
真正的感情是两人能在最艰苦中相守,也就是没有丝毫要求。<BR>
毕竟,感情必须付出,而不是只想获得;<BR>
分开是一种必然的考验,<BR>
如果你们感情不够稳固,只好认输,<BR>
真爱是不会变成怨恨的。<BR>
两人在谈情说爱的时候,<BR>
最喜欢叫对方发誓,许下承诺我们为什么要对方发誓,<BR>
就是因为我们不相信对方,我们根本不相信情人,<BR>
而这些山盟海誓又很不切实际:<BR>
海枯石烂、地老天荒,都不能改变我对你的爱!<BR>
明知道海不会枯、石不会烂、地不会老、天不会荒;<BR>
就算会,也活不到那时候。<BR>
许下诺言的时候千万注意,不要许下可以实现的诺言,<BR>
最好是承诺做不到的事,<BR>
反正做不到的,随便说说也不要紧,<BR>
请记住:”不可能实现的诺言最动人”<BR>
在爱情里,说的是一套,做的是另一套;<BR>
讲的人不相信,听的人也不相信。<BR>
你呢?找到了第几个?<BR>
茫茫人海中,你遇见了谁?谁又遇见了你?</FONT></FONT></P>
<P align=left> </P>
<P> <FONT color=#ff0000>转给0-4人:你的生活会悄悄起变化</FONT></P>
<P> <FONT color=#ff0000>转给5-9人:生活如你所愿</FONT></P>
<P> <FONT color=#ff0000>转给9-14人:接下来的三个星期你会有惊喜的发现</FONT></P>
<P> <FONT color=#ff0000>转给15人以上:你的梦想终会成真.</FONT> </P>
<P> 这是一个朋友转发给我的信。常常收到类似的让我继续转发的邮件,号称如果这样做了就会怎么样之类,通常我会把自己作为终点,但是这封信打动了我,因为它说:"收到了这封信,是因为有人在默默的祝福,因为你也爱你身边的一些人"。带着爱的,一切将如愿以偿。</P>
<P> 这是一封给你送上好运的信,它始于新英格兰。此信的复制由南非教区主教索尔安东尼起草并由维尼乌拉发出,已经绕地球转了十次。现在好运已降临到你身上,只要你照办,将此信复制2O份分别寄给亲朋好友,使它在界各地周转,你将在四天内交到好运,这不是在开玩笑,不需要寄钱,因为幸运是无代价的。</P>
<P>
<B><FONT face=宋体>你看到了吗?我在默默的祝福你。<SPAN lang=EN-US
style="FONT-FAMILY: PMingLiU; mso-bidi-font-family: 宋体">*^_^*</SPAN></FONT><SPAN
style="FONT-FAMILY: PMingLiU; mso-bidi-font-family: 宋体"><FONT
face=PMingLiU>
</FONT></SPAN></B></P></TD></TR></TBODY></TABLE></DIV>
<DIV id=w1></DIV>
<P align=center> </P><BR><BR>
<SCRIPT language=JavaScript>
<!--
if (window.Event)
document.captureEvents(Event.MOUSEUP);
function nocontextmenu()
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
function norightclick(e)
{
if (window.Event)
{
if (e.which == 2 || e.which == 3)
return false;
}
else
if (event.button == 2 || event.button == 3)
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
}
document.oncontextmenu = nocontextmenu; // for IE5+
document.onmousedown = norightclick; // for all others
//-->
</SCRIPT>
</BODY></HTML>
❽ 求一套400电话网站 PHP源码, 邮箱:[email protected] 带账号方便给分,— 满意加200分
您需要什么行业类型的网站呢?
告诉我,我发给您
❾ 谁有那种静态网页的源代码,老师要我们做五张网页
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Dot</title>
<style>
body{
background-color: #222
}
.bd{
width: 400px;
height: 400px;
margin: -200px 0 0 -200px;
}
.bg1{
width: 200px;
height: 200px;
border: 8px solid grey;
margin: -108px 0 0 -108px;
background-color: rgb(64, 255, 0);
animation: gradiant 1s infinite linear alternate;
}
.bg2{
width: 150px;
height: 150px;
margin: -75px 0 0 -75px;
background-color: grey;
}
.dot{
cursor: pointer;
width: 50px;
height: 50px;
margin: -25px 0 0 -25px;
animation: rotate 1s infinite linear;
}
.dot:before{
content: '';
top: -75px;
left: 50%;
width: 8px;
height: 75px;
margin-left: -4px;
}
.bg, .dot{
border-radius: 50%;
}
.bd, .bg, .dot{
position: absolute;
top: 50%;
left: 50%;
}
.dot, .dot:before{
position: absolute;
background-color: #ddd;
}
@keyframes rotate{
0%{
transform: rotate(0deg);
}
100%{
transform: rotate(360deg);
}
}
@keyframes gradiant{
0%{
background-color: rgb(64, 255, 0);
}
100%{
background-color: rgb(255, 225, 0);
}
}
</style>
</head>
<body>
<div>
<div class="bg bg1"></div>
<div class="bg bg2"></div>
<div></div>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<title>Wave</title>
<style>
body {
background: #222;
margin: 0px;
}
.bd {
position: absolute;
top: 50%;
left: 50%;
width: 198px;
height: 198px;
border: 1px solid white;
margin: -100px 0 0 -100px;
animation: Rotate 1s infinite linear;
}
.waves {
position: absolute;
top: 50%;
left: 50%;
width: 20px;
height: 20px;
margin: -10px 0 0 -10px;
border-radius: 50%;
}
.waves:before,
.waves:after {
position: absolute;
background: white;
width: 20px;
height: 20px;
content: "";
display: block;
border-radius: 50%;
}
.waves:before {
animation: wave-animate 1s infinite ease-out;
}
.waves:after {
opacity: 0;
animation: wave-animate 1s .5s infinite ease-out;
}
@keyframes Rotate {
0% {
transform: rotateY(0deg);
}
100% {
transform: rotateY(360deg);
}
}
@keyframes wave-animate {
0% {
transform: scale(0);
opacity: 1;
transform-origin: center;
}
100% {
transform: scale(3);
opacity: 0;
transform-origin: center;
}
}
</style>
<div class="bd"></div>
<div class="waves"></div>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>- 3D -密码: LPT</title>
<script src="http://t.cn/R8x6B8l"></script>
<script src="http://t.cn/R8xXzoK"></script>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<script>
$(function () {
window.onload = function(){//预加载图片
$('.cards').css('background-size','100%');
};
$('#btn_flex').click(function () {//操作台收展切换
var btn_height = Number($('#btn').css('height').split('px')[0]);
console.log('btn_height: ' + btn_height);
if (btn_height !== 0) {
$('#btn').css('height', '0');
$(this).html('展开');
} else {
$('#btn').css('height', 'auto');
$(this).html('收起');
}
});
$('input[type=button]').click(function () {//控件按钮事件
var tt = $(this).prev();
var css_name_0 = tt.attr('id').split('_')[0];
var css_name_1 = tt.attr('id').split('_')[1];
var css_name_3 = '(' + tt.val() + ')';
var unite = new Array('px', 's', 'deg');
console.log(tt);
console.log(css_name_0 + '||' + css_name_1);
console.log(typeof css_name_0 + '||' + typeof css_name_1);
if (css_name_1 === '') {
if (css_name_0 === 'perspective') {
$('#see').css(css_name_0, tt.val() + unite[0]);
} else {
$('body,h1,h2,h3,h4,h5,h6,b,span,input,ul,ul,div,button').css(css_name_0, tt.val() + unite[1]);
};
} else if (css_name_0 === 'scal') {
$('#bd').css('transform', css_name_0 + css_name_1 + css_name_3);
} else {
$('#bd').css('transform', css_name_0 + css_name_1 + '(' + tt.val() + unite[2] + ')');
};
});
$('.cards').click(function () {//翻页
var page = $('#bd').css('transform');
console.log(page);
});
$('button').click(function () {//自定义bd的CSS
var command_name = $('#css_user_name').val();
var command_text = $('#css_user_text').val();
var $button = $(this).html();
if (command_name === 'style') {
if ($button === '提交') {
$(command_name).html(command_text);
console.log(command_name + ' (style): ' + command_text);
} else {
alert('此DOM自定义内容为您输入在文本框内的内容,自行修改提交即可.');
};
} else {
if ($button === '提交') {
$(command_name).attr('style', command_text);
console.log(command_name + ' (CSS): ' + command_text);
} else if ($button === '清除自定义样式') {
$(command_name).removeAttr('style');
console.log(command_name + ' (CSS): Clear');
};
};
});
//**//
});
function SV() {//实时记录CSS数值
$('#perspective_val').html($('#see').css('perspective'));
$('#transition_val').html($('#bd').css('transition'));
$('#rotateX_val').html($('#bd').css('transform'));
$('#rotateY_val').html($('#bd').css('transform'));
$('#rotateZ_val').html($('#bd').css('transform'));
$('#scale_val').html($('#bd').css('transform'));
};
setInterval(SV, 80);
</script>
<style></style>
</head>
<body>
<div>
<ul id="btn">
<li id="btn_flex" class="title">收起</li>
<li>
<b>自定义CSS( <input type="text" id="css_user_name" placeholder="DOM选择" /> )</b>
<br/>
<textarea id="css_user_text"></textarea>
<br/>
<button>提交</button>
<button>清除样式</button>
<br/>
<b>perspective(视距)</b>
<br/>
<span>value:</span>
<br/>
<input type="text" id="perspective_" />
<input type="button" value="修改" />
<br/>
<span class="css_val" id="perspective_val"></span>
<br/>
<b>transition(过渡时间)</b>
<br/>
<span>value:</span>
<br/>
<input type="text" id="transition_" />
<input type="button" value="修改" />
<br/>
<span class="css_val" id="transition_val"></span>
<br/>
<b>rotate(3D旋转)</b>
<br/>
<span>X轴旋转:</span>
<br/>
<input type="text" id="rotate_X" />
<input type="button" value="修改" />
<br/>
<span class="css_val" id="rotateX_val"></span>
<br/>
<span>Y轴旋装:</span>
<br/>
<input type="text" id="rotate_Y" />
<input type="button" value="修改" />
<br/>
<span class="css_val" id="rotateY_val"></span>
<br/>
<span>Z轴旋转:</span>
<br/>
<input type="text" id="rotate_Z" />
<input type="button" value="修改" />
<br/>
<span class="css_val" id="rotateZ_val"></span>
<br/>
<b>scale(缩放)</b>
<br/>
<span>value:</span>
<br/>
<input type="text" id="scal_e" />
<input type="button" value="修改" />
<br/>
<span class="css_val" id="scale_val"></span>
</li>
</ul>
</div>
<div id="see">
<div id="bd">
<div class="cards"></div>
<div class="cards"></div>
<div class="cards"></div>
<div class="cards"></div>
<div class="cards"></div>
<div class="cards"></div>
<div class="cards"></div>
<div class="cards"></div>
</div>
</div>
</body>
</html>
大概就这样, 给了你三个, body标签里面内容自定, title标题自定, 这是我瞎搞的动画, 没毛病老铁, 你在一些站点里面要静态网页多的是@~@
❿ 我再发一次,请管理员不要删,400分跪求asp文章系统源代码
您提到具体的范围要求,应该需要专门为此编写,4000块我可以为您编写一个!有意请和我联系!