var getKeyFrame = function(index, name){ var styleSheet = document.styleSheets[index], keyframesRule = [];
[].slice.call(styleSheet.cssRules).forEach(function(item){ if (item.type == CSSRule.KE...
分类:
Web程序 时间:
2015-07-07 11:16:16
阅读次数:
139
<!--form.html-->
<!DOCTYPEhtml>
<htmlng-app="firstMoudule"lang="zh-CN">
<head>
<metacharset=‘utf-8‘>
<linkrel="stylesheet"href="http://cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.css">
<linkrel="stylesheet"href="../..
分类:
Web程序 时间:
2015-07-05 07:17:00
阅读次数:
218
new.html <!DOCTYPE?html>
<html>
<head?lang="en">
????<meta?charset="UTF-8">
????<title></title>
????<link?rel="stylesheet"?href="css/index.css"/>
</head>
<body>
????<header>
...
分类:
Web程序 时间:
2015-07-02 15:57:24
阅读次数:
160
html <!DOCTYPE?html>
<html>
<head?lang="en">
????<meta?charset="UTF-8">
????<title></title>
????<link?rel="stylesheet"?href="css/index.css"/>
</head>
<body>
????<header>
???...
分类:
Web程序 时间:
2015-07-01 18:54:05
阅读次数:
215
/css/lightBox.css" rel="stylesheet" type="text/css">图片上传/css/wechat/common.css" rel="stylesheet" type="text/css" />/css/wechat/style.css" rel="stylesh...
分类:
微信 时间:
2015-07-01 14:03:44
阅读次数:
285
1:引入需要的文件<script src="style/js/jquery.uploadify.min.js">
<link href="style/css/uploadify.css" rel="stylesheet">2:初始化上传组件function initUploadify() {
$("#btn...
分类:
Web程序 时间:
2015-06-30 10:40:13
阅读次数:
136
从 QWidget 派生一个窗口,使用 stylesheet 设置背景,designer 设置没有问题,或者,通过 setStyleSheet() 设置,代码操作是正确的,编译运行后,却没有背景。
原因是,QWidget 的 paintEvent() 是空的,而样式表要通过 paint 被绘制到窗口中,我们需要重新写 paintEvent() 函数,才能够真正实现继承。...
分类:
其他好文 时间:
2015-06-26 21:14:57
阅读次数:
187
工具报废移除 /busi/css/reset.css" rel="stylesheet" type="text/css" /> /busi/css/newMain.css" rel="stylesheet" type="text/css" /> ...
分类:
Web程序 时间:
2015-06-24 12:25:02
阅读次数:
597
从 QWidget 派生一个窗口,使用 stylesheet 设置背景,在 designer 中可以看到效果,编译运行后,没有背景。原因比较简单,QWidget 的 paintEvent() 是空的,而样式表要通过 paint 被绘制到窗口中。
QWidget 是所有窗口中父类,但有时候,我们需要给它重写一些方法,比如 paintEvent() 事件等,我们需要重新写paintEvent() 函数,才能够真正实现继承。...
分类:
其他好文 时间:
2015-06-23 13:37:18
阅读次数:
273
简介CSS 即层叠样式表(Cascading Stylesheet)。Web 开发中采用 CSS 技术,可以有效地控制页面的布局、字体、颜色、背景和其它效果。只需要一些简单的修改,就可以改变网页的外观和格式。CSS3 是 CSS 的升级版本,这套新标准提供了更加丰富且实用的规范,如:盒子模型、列表模...
分类:
Web程序 时间:
2015-06-18 13:24:46
阅读次数:
106