function hr(){
alert('你关不掉的^_^')
hr()
}
</script>
<body onLoad="hr()">
</body>
做坏事了 面壁去。。
1、<marquee>...</marquee>普通卷动
2、<marquee behavior=slide>...</marquee>滑动
3、<marquee behavior=scroll>...</marquee>预设卷动
4、<marquee behavior=alternate>...</marquee>来回卷动
5、<marquee direction=down>...</marquee>向下卷动
6、<marquee direction=up>...</marquee>向上卷动
7、<marquee direction=right></marquee>向右卷动
8、<marquee direction=’left’></marquee>向左卷动
9、<marquee loop=2>...</marquee>卷动次数
10、<marquee width=180>...</marquee>设定宽度
11、<marquee height=30>...</marquee>设定高度
12、<marquee bgcolor=FF0000>...</marquee>设定背景颜色
13、<marquee scrollamount=30>...</marquee>设定滚动速度
14、<marquee scrolldelay=300>...</marquee>设定卷动时间
15、<marquee onmouseover="this.stop()">...</marquee>鼠标经过上面时停止滚动
16、<marquee onmouseover="this.start()">...</marquee>鼠标离开时开始滚动
在网页中除了可显示常见的美国信息交换标准代码(外语缩写:ASCII)字符和汉字外,HTML还有许多特殊字符,它们一起构成了HTML字符集。
有2种情况需要使用特殊字符,一是网页中有其特殊意义的字符,二是键盘上没有的字符。
HTML字符可以用一些代码来表示,代码可以有2种表示方式。即字符代码(命名实体)和数字代码(编号实体)。
字符代码以“&”符开始,以分号""结束,其间是字符名,如&reg。数字代码也以“&#”符开始,以分号""结束,其间是编号,如®。
扩展资料
网站源码作为软件的特殊部分,可能被包含在一个或多个文件中。一个程序不必用同一种格式的源代码书写。例如,一个程序如果有C语言库的支持,那么就可以用C语言;而另一部分为了达到比较高的运行效率,则可以用汇编语言编写。
较为复杂的软件,一般需要数十种甚至上百种的源代码的参与。为了降低这种复杂度,必须引入一种可以描述各个源代码之间联系,并且如何正确编译的系统。在这样的背景下,修订控制系统(RCS)诞生了,并成为研发者对代码修订的必备工具之一。
还有另外一种组合:源代码的编写和编译分别在不同的平台上实现,专业术语叫做软件移植。
参考资料来源:百度百科-源码
效果图,图片自己换,
html代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>泰国</title>
<link rel="stylesheet" type="text/css" href="css/index.css"/>
<script type="text/javascript" src="js/index.js"></script>
</head>
<body>
<div class="box">
<div class="titles">泰国</div>
<div class="img-box">
<img class="auto-img" src="images/a001.jpg"/>
</div>
<div class="text-box">
<div class="text-box-a">
<a href="#">曼谷、芭提雅(珊瑚岛、金沙岛)5晚7天</a>
</div>
<div class="text-box-a">
东航直飞曼谷客机,入住1晚曼谷国际5星+4晚泰式5星酒店,芭提雅双岛(珊瑚岛+金沙岛)清...
</div>
<div class="text-box-a">
出发日期:星期一,星期二,星期三,星期四,星期五
</div>
</div>
<div class="bottom ovf">
<div class="fl text-a1">
班期:每周发团
</div>
<div class="fr">
<div class="price">¥&nbsp4549</div>
<div class="rush-to-buy">立即抢购</div>
</div>
</div>
</div>
</body>
</html>
css样式:
html,body{
padding:0
margin:20px 0 0
}
a{
text-decoration:none
}
.fl{
float:left
}
.fr{
float:right
}
.ovf{
overflow: hidden
}
.box{
width:50%
margin:0 auto
border:1px dashed #000000
padding:4px
}
.titles{
width:100%
text-align: center
color:#ffffff
background-color: #ff0000
}
.img-box{
width:100%
margin-top: 4px
}
.auto-img{
display: block
width:100%
}
.text-box{
width:100%
}
.text-box-a{
width:100%
font-size: 14px
line-height: 20px
letter-spacing: 1px
}
.text-box-a>a{
color:#0089ff
}
.bottom{
margin-top: 30px
}
.text-a1{
font-size: 18px
font-style: italic
font-style:oblique/*为保证斜体效果加一个*/
}
.price{
font-size: 16px
color:#8B3E2F
}
.rush-to-buy{
width:80px
text-align: center
background-color: #ff0000
font-size: 16px
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)