项目中用到的一些特殊字符和图标 html代码 <div class="cross"></div> css代码.cross{ width: 20px; height: 20px; background-color: #F3F9FF; border-radius: 10px; border: 1px s ...
分类:
Web程序 时间:
2017-03-01 13:57:18
阅读次数:
468
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <style> .chaxun-yanzhengma-btn{ border-radius: 4px; background-color: #FF4179; bor ...
分类:
Web程序 时间:
2017-02-28 19:23:47
阅读次数:
212
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <style> div.circle { height: 100px; width: 100px; background: #9da; border-radius: ...
分类:
Web程序 时间:
2017-02-25 21:38:44
阅读次数:
200
最近再做一个UWP的音乐播放器,今天实现了歌词动画,不是滚动的,滚动的慢慢研究 思路:在右边放了三个textBlock,设置 textBlock的effect属性 <TextBlock.Effect> <BlurEffect Radius="0"></BlurEffect> </TextBlock. ...
示例.rounded-corners(@radius:5px){
-webkit-border-radius:@radius;
-moz-border-radius:@radius;
-ms-border-radius:@radius;
-o-border-radius:@radius;
border-radius:@radius;
}
#header{
.rounded-corners;
}
#footer{
.rounded-corners(10px);
}说明.rounded-corners..
分类:
其他好文 时间:
2017-02-23 22:57:42
阅读次数:
218
示例//radius.less
#header,#footer{
-webkit-border-radius:5px;
-moz-border-radius:5px;
-ms-border-radius:5px;
-o-border-radius:5px;
border-radius:5px;
}//example6.less
@import"radius.less";
@the-border:1px;
@base-color:#111;
@red:#842210;
#header{
co..
分类:
其他好文 时间:
2017-02-23 22:56:22
阅读次数:
271
Smobiler是一个在VS环境中使用.Net语言来开发APP的开发平台,也许比Xamarin更方便 ...
分类:
移动开发 时间:
2017-02-23 16:07:25
阅读次数:
153
平时做一些demo的时候,需要用到颜色,但是好多好看的颜色又记不住,所以做了一个demo,点击可以直接复制颜色的颜色码 ...
分类:
其他好文 时间:
2017-02-22 16:22:07
阅读次数:
284
<div id="container" style="width: 100%; margin: 0 auto"></div><script language="JavaScript">$(document).ready(function() { var d=['Jan12', 'Feb13', 'M ...
分类:
其他好文 时间:
2017-02-20 14:02:26
阅读次数:
2191
1、特效 border-radius:圆角 box-shadow/text-shadow:阴影 -webkit-gradient:渐变background-orign:用来决定 background-position 计算的参考位置。 background-clip:用来确定背景的裁剪区域。back ...
分类:
Web程序 时间:
2017-02-20 07:47:26
阅读次数:
200