一个简单的网页代码,哪个高手帮我看一下?谢谢

供稿:hz-xin.com     日期:2025-01-13
谁能帮我写一下一个很简单的网页代码,谢谢。

静态网页用Dreamweaver或者HBuilder或者类似的软件工具就可以做了,托拉拽一下就解决了,很方便。。。



序号
书名
借书人
借书日期
备注

01
《战争与和平》
王少飞
11/02/2011



02
《红与黑》
张芷若
12/02/2011



03
《平凡的世界》
周晓敏
01/02/2012



04
《穆斯林的葬礼》
李劲光
12/03/2012



05
《雾都孤儿》
于静
02/09/2012



这样?

书上的代码没几个能正常运行的,我帮你改了一下,IE8下可以了
<html>
<head>
<title>第一个实例</title>
<style type=text/css>
<!--
body{background-image:url(1-4-1.jpg);background- attachment:scroll;
background-position:100% 100%;background-repeat:no-repeat}
h2{font-family:黑体;font-size:22pt;color:red}
.p1{font-size:20px;color:#000000;texe-align:left}
-->
</style>
</head>
<body>
<center>
<h2>第一个HTML、CSS、JavaScript实例</h2>
</center>
<hr>
<p class=p1>1.HTML是网页框架的基础。</p>
<p class=p1>2.用CSS定义背景图片的位置、标题段落2和标题段落的格式。</p>
<p class=p1>3.用JavaScript编写文字随鼠标旋转的特效。</p>
<script language="JavaScript">
if (document.all)
{
var yourLogo= "第一个HTML、CSS、JavaScipt实例";
var logoFont= "黑体";
var logoFont= "Arial";
var logoColor= "ff0000";
var L= yourLogo.length;
var TrigSplit= 360/L;
var Sz= new Array()
var logoWidth= 100;
var logoHeight= -30;
var ypos=0;
var xpos=0;
var step=0.03;
var currStep=0;
document.write('<div id="outer" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for(i=0;i<L;i++)
{
document.write('<div id="ie'+i+'" style="position:absolute;top:0px;left:0px;'+
'width:20px;height:20px;font-family;'+
logoFont+';font-size:100px;'+
'color:'+logoColor+';text-align:center">'+
yourLogo.charAt(i)+'</div>');
}
document.write('</div></div>');

document.body.onmousemove=function()
{
ypos=event.y;
xpos=event.x-5;
status=xpos+","+ypos;
}
function animateLogo()
{
outer.style.top=document.body.scrollTop;
for(i=0;i<L;i++)
{
document.getElementById("ie"+i).style.top=ypos+logoHeight*Math.sin(currStep+i*TrigSplit*Math.PI/180);
document.getElementById("ie"+i).style.left=xpos+logoWidth*Math.cos(currStep+i*TrigSplit*Math.PI/180);
Sz[i]=document.getElementById("ie"+i).style.pixelTop-ypos;
if(Sz[i]<5) Sz[i]=5;
document.getElementById("ie"+i).style.fontSize=Sz[i]/0.9;
}
currStep-=step;
setTimeout('animateLogo()',20);
}
window.onload=animateLogo;
}
</script>
</body>
</html>

直接粘贴会有错误,多了很多回车,把这些回车删了就好了!
粘贴下边的代码,效果有出来!
<html>
<head>
<title>第一个实例</title>
<style type=text/css>
<!--
body{background-image:url(1-4-1.jpg);background- attachment:scroll;
background-position:100% 100%;background-repeat:no-repeat}
h2{font-family:黑体;font-size:22pt;color:red}
.p1{font-size:20px;color:#000000;texe-align:left}
-->
</style>
</head>
<body>
<center>
<h2>第一个HTML、CSS、JavaScript实例</h2>
</center>
<hr>
<p class=p1>1.HTML是网页框架的基础。</p>
<p class=p1>2.用CSS定义背景图片的位置、标题段落2和标题段落的格式。</p>
<p class=p1>3.用JavaScript编写文字随鼠标旋转的特效。</p>
<script language="JavaScript">
if (document.all)
{
yourLogo= "第一个HTML、CSS、JavaScipt实例";
logoFont= "黑体";
logoFont= "Arial";
logoColor= "ff0000";
yourLogo= yourLogo.split('');
L= yourLogo.length;
TrigSplit= 360/L;
Sz= new Array()
logoWidth= 100;
logoHeight= -30;
ypos=0;
xpos=0;
step=0.03;
currStep=0;
document.write('<div id="outer" style="position:absolute;top:0px;left:0px;"><div style="position:relative">');
for(i=0;i<L;i++)
{
document.write('<div id="ie" style="position:absolute;top:0px;left:0px;'+'width:20px;height:20px;font-family;'+logoFont+';font-size:100px;'+'color:'+logoColor+';text-align:center">'+yourLogo[i]+'</div>');
}
document.write('</div></div>');
function Mouse()
{
ypos=event.y;
xpos=event.x-5;
}
document.onmousemove=Mouse;
function animateLogo()
{
outer.style.pixelTop=document.body.scrollTop;
for(i=0;i<L;i++)
{
ie[i].style.top=ypos+logoHeight*Math.sin(currStep+i*TrigSplit*Math.PI/180);
ie[i].style.left=xpos+logoWidth*Math.cos(currStep+i*TrigSplit*Math.PI/180);
Sz[i]=ie[i].style.pixelTop-ypos;
if(Sz[i]<5) Sz[i]=5;
ie[i].style.fontSize=Sz[i]/0.9;
}
currStep-=step;
setTimeout('animateLogo()',20);
}
window.onload=animateLogo;
}
</script>
</body>
</html>

L= yourLogo.length;

Length 改为 小写字母 length;

document.write('<div id="outer" style="position:absolute;top:0px;left:0px"><div style="position:relative">');// 此句一行过. 并在style 之前加个空格,.

HTML网页设计:一个简单的登录界面可以连接到数据库记录的代码
如下参考:1.首先,在您的计算机桌面上创建一个新文件夹,然后在该文件夹中创建一个新的文本文档。2.然后用记事本双击打开文本文档,如下图所示,然后编写一个简单的HTML代码。3.点击“另存为”功能选项,显示默认的“另存为”代码为ANSI。4.我们将把编码和文件名更改回图中所示的图像并保存它。5....

求有文字和链接地址的弹出窗口的网页代码
求有文字和链接地址的弹出窗口的网页代码:校园网站要求主页要求有一个能弹出有文字信息提示的如”欢迎浏览评估网站”的窗口,带链接地址点击能打开新的页面http:\/\/www2.hist.edu.cn\/... 求有文字和链接地址的弹出窗口的网页代码: 校园网站要求主页要求有一个能弹出有文字信息提示的如”欢迎浏览评估网站”的窗口,带...

三分钟教你创建一个简单的网页
在科技与数据爆炸的时代,掌握基本技术尤为重要。本文将指导你使用Adobe Dreamweaver CC 2015创建一个简单的网页。首先,打开Dreamweaver,你会看到初始界面:接着,找到HTML按钮(红色方框所示),点击后,进入代码编辑窗口:预设的代码提供了基础框架,如图所示,红色框内的部分是页面标题,我们将其命名为"我...

简单的网页导航条代码
14"> 登陆|注册这里要什么就你自己写咯 关闭 <\/DIV> 呵呵 新建记事本 打开复制该代码 保存 修改后缀名为html 预览效果!

关于一简单的动态网页设计的作业。帮我看看,该怎么写代码。急急!!!
< dim a,b,c a=request.Form("年龄")b=request.Form("性别")c=request.Form("学历")if isnumeric(a)=true then a=cint(a)if b="男" then response.write("alert('你的性别不符合!');history.go(-1)'")response.End()end if if a<20 and a>30 then response.write("alert('...

用HTML制作网页――表单与ASP,求高手帮忙
第一个html页面代码如下:<!DOCTYPE html PUBLIC "-\/\/W3C\/\/DTD XHTML 1.0 Transitional\/\/EN" "http:\/\/www.w3.org\/TR\/xhtml1\/DTD\/xhtml1-transitional.dtd"> 无标题文档 姓名: 性别: 男

求高手帮忙小小改一下这个网页代码。
把<%=rs("newsTitle")%>替换为 <% if len(rs("newsTitle"))>10 then response.Write(left(rs("newsTitle"),10)&"...")else response.Write(rs("newsTitle"))end if %>

求网页代码,一个简单的记事本代码。
import java.awt.*;import java.awt.event.*;import java.io.*;import javax.swing.*;public class MyNotepad implements ActionListener{private JFrame frame=new JFrame("新记事本");private JTextArea jta=new JTextArea();private String result="";private boolean flag=true;private File f;pri...

请高手帮我分析一下网页代码;
如你在dreamweaver中插入FLASH文件,就会自动生成这类的标签代码.网页中的object其实就是一个COM组件,classid就是这个COM组件在系统中注册的一个ID值,有了这个ID值系统才能找到这个COM组件对应的DLL文件,就像普通的软件用其他DLL时需要一个路径一样。而后面的codebase一般是用来下载和更新组件用的,比如...

有段可疑的网页代码,请高手帮我解密
说下这段代码的意思,在网页中显示一个名字叫点击进入主站的链接,链接的地址是: 当前网站地址\/?jdfwkey=husic2 jdfwkey=husic2就是decoder()函数的返回结果,这也就是要解密的内容。解密方法:将下面的代码保存为1.htm,然后用浏览器打开,浏览器不要禁用JavaScript,在弹出的窗口中显示内容就是要解密...