<styletype="text/css">@font-face{font-family:‘GlyphiconsHalflings‘;src:url(‘${resource(dir:‘fonts‘,file:‘glyphicons-halflings-regular.eot‘)}‘);src:url(‘${resource(dir:‘fonts‘,file:‘glyphicons-halflings-regular.svg‘)}‘);src:url(‘${resource(dir:‘fonts‘,..
分类:
其他好文 时间:
2014-12-03 02:00:16
阅读次数:
200
<!DOCTYPE?html>
<html>
<head>
<title>Script-based?animation?using?requestAnimationFrame</title>
<style?type="text/css">
div?{?position:?absolute;?left:?10px;?top:100px;?padding:?50px;...
分类:
Web程序 时间:
2014-11-30 14:15:07
阅读次数:
154
<html>
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>
<metaname="viewport"content="initial-scale=1.0,user-scalable=no"/>
<styletype="text/css">
body,html,#allmap{width:100%;height:100%;overflow:hidden;..
分类:
其他好文 时间:
2014-11-29 07:09:59
阅读次数:
1347
<html>
<head>
<title>
事件冒泡与事件捕获示例
</title>
<styletype="text/css">
div{
color:red;
}
</style>
</head>
<body>
<divid="myDiv"class="main"onclick="alert(‘clickdiv‘);">
&..
分类:
编程语言 时间:
2014-11-27 10:53:15
阅读次数:
184
直接上代码<<!DOCTYPEHTML>
<html>
<head>
<linkhref="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap-combined.min.css"rel="stylesheet">
<linkrel="stylesheet"type="text/css"media="screen"
href="http://tarruda...
分类:
Web程序 时间:
2014-11-25 18:56:54
阅读次数:
305
先上html代码<!DOCTYPEHTML>
<html>
<head>
<linkhref="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap-combined.min.css"rel="stylesheet">
<linkrel="stylesheet"type="text/css"media="screen"
href="http://tarruda.gi..
分类:
Web程序 时间:
2014-11-25 18:52:43
阅读次数:
202
1 指定编码字符集,极力推荐2 指定lang,所有的标签上都有,推荐在上指定。3 css样式的引入,不再需要指定type="text/css"4 js的引入,不再需要language="javascript",但是关闭标签是必须的。上面一行是针对IE而设定的。5 checkbox,checked是一...
分类:
Web程序 时间:
2014-11-24 16:53:09
阅读次数:
236
具体代码实现:<!DOCTYPEhtml>
<html>
<head>
<title></title>
<metacharset="utf-8"/>
<metaname="viewport"content="width=device-width,initial-scale=1.0">
<linkrel="stylesheet"type="text/css"href="bootstrap/css/bootst..
分类:
其他好文 时间:
2014-11-24 01:15:29
阅读次数:
454
1、了解canvas
canvas id="stars" height="600">canvas>
这是画布
2、设置body背景色
style type="text/css">
body{
background-color: black;
}
style>
3、初始化画布及context...
分类:
Web程序 时间:
2014-11-23 20:18:54
阅读次数:
317
js中动态载入css样式,方法如下://var addCssLink = function(url){ var link = $(''); link.attr('rel','stylesheet'); link.attr('type','text/css'); link.at...
分类:
Web程序 时间:
2014-11-19 10:47:31
阅读次数:
234