2016/03/03 codes

<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style type="text/css">
.heart{
width: 200px;
height: 200px;
background-color: #d31145;
margin: 100px auto;
transform:rotate(45deg);
position: relative;
}
.heart:before,.heart:after{
content: ‘‘;
width: 200px;
height: 200px;
background-color: #d31145;
position: absolute;
border-radius: 100px;
left: -100px;
}
.heart:after{
top: -100px;
}
</style>
</head>
<body>
<div class="heart"></div>
</body>
</html>

<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style type="text/css">
.tai{
width: 96px;
height: 48px;
background-color: white;
border-color: blue;
border-width: 2px 2px 50px 2px;
border-style:solid;
border-radius: 50px;
margin: 100px auto;
position: relative;
}
.tai:before{
content: ‘‘;
position: absolute;
top:24px;
width: 12px;
height: 12px;
background-color: white;
border: 18px solid blue;
border-radius: 50%;;
}
.tai:after{
content: ‘‘;
position: absolute;
top:24px;
left: 50%;
width: 12px;
height: 12px;
background-color: blue;
border: 18px solid white;
border-radius: 50%;;
}
.mouse{
width: 60px;
height: 90px;
border-color: white;
border-bottom-color: red;
border-style: solid;
border-radius: 50%;
}
</style>
</head>
<body>
<div class="tai"></div>
<div class="mouse"></div>
</body>
</html>

<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style type="text/css">
.container {
column-width: 180px;
-webkit-column-width:180px;

column-gap:3px;
-webkit-column-gap:3px;
}
.container div{
width: 180px;
margin: 5px 0;
border: 1px solid gray;
}
.container img{
width: 180px;
}
.container div p{
text-align: center;
font-family: "黑体";
font-size: 12px;
}
</style>
</head>
<body>
<div class="container">
<div><img src="image/1.jpg"><p>hello,welcome!</p></div>
<div><img src="image/5.jpg"><p>hello,welcome!</p></div>
<div><img src="image/20.jpg"><p>hello,welcome!</p></div>
<div><img src="image/10.jpg"><p>hello,welcome!</p></div>
<div><img src="image/1.jpg"><p>hello,welcome!</p></div>
<div><img src="image/5.jpg"><p>hello,welcome!</p></div>
<div><img src="image/20.jpg"><p>hello,welcome!</p></div>
<div><img src="image/10.jpg"><p>hello,welcome!</p></div>
<div><img src="image/1.jpg"><p>hello,welcome!</p></div>
<div><img src="image/5.jpg"><p>hello,welcome!</p></div>
<div><img src="image/20.jpg"><p>hello,welcome!</p></div>
<div><img src="image/10.jpg"><p>hello,welcome!</p></div>
<div><img src="image/1.jpg"><p>hello,welcome!</p></div>
<div><img src="image/18.jpg"><p>hello,welcome!</p></div>
<div><img src="image/17.jpg"><p>hello,welcome!</p></div>
<div><img src="image/14.jpg"><p>hello,welcome!</p></div>
<div><img src="image/11.jpg"><p>hello,welcome!</p></div>
<div><img src="image/3.jpg"><p>hello,welcome!</p></div>
<div><img src="image/8.jpg"><p>hello,welcome!</p></div>
<div><img src="image/7.jpg"><p>hello,welcome!</p></div>
<div><img src="image/1.jpg"><p>hello,welcome!</p></div>
<div><img src="image/5.jpg"><p>hello,welcome!</p></div>
<div><img src="image/20.jpg"><p>hello,welcome!</p></div>
<div><img src="image/10.jpg"><p>hello,welcome!</p></div>
<div><img src="image/1.jpg"><p>hello,welcome!</p></div>
<div><img src="image/5.jpg"><p>hello,welcome!</p></div>
<div><img src="image/20.jpg"><p>hello,welcome!</p></div>
<div><img src="image/10.jpg"><p>hello,welcome!</p></div>
<div><img src="image/1.jpg"><p>hello,welcome!</p></div>
<div><img src="image/5.jpg"><p>hello,welcome!</p></div>
<div><img src="image/20.jpg"><p>hello,welcome!</p></div>
<div><img src="image/10.jpg"><p>hello,welcome!</p></div>
<div><img src="image/1.jpg"><p>hello,welcome!</p></div>
<div><img src="image/18.jpg"><p>hello,welcome!</p></div>
<div><img src="image/17.jpg"><p>hello,welcome!</p></div>
<div><img src="image/14.jpg"><p>hello,welcome!</p></div>
<div><img src="image/11.jpg"><p>hello,welcome!</p></div>
<div><img src="image/3.jpg"><p>hello,welcome!</p></div>
<div><img src="image/8.jpg"><p>hello,welcome!</p></div>
<div><img src="image/7.jpg"><p>hello,welcome!</p></div>
</div>
</body>
</html>

时间: 2024-10-20 11:12:04

2016/03/03 codes的相关文章

2016/02/21 codes

var Class = { create:function(){ var parent = null,properties = $A(arguments); if(Object.isFunction(properties[0])) parent = properties.shift(); function kclass(){ this.initialize.apply(this.arguments); } Object.extend(kclass,Class.Methods); kclass.s

2016/02/16 codes

<!DOCTYPE html><html><head lang="en"> <meta charset="UTF-8"> <title>2016/02/16 codes</title> <link rel="stylesheet" href="assets/reset.css"> <style> .slideOne{ width:

2016/03/06 codes

var vertIndex = normalIndex; var vertIndex2 = vertIndex + 1 < poly.m_vertexCount ? vertIndex + 1 : 0; var eX = poly.m_vertices[vertIndex2].x - p.m_vertices[vertIndex1].x; var eY = poly.m_vertices[vertIndex2].y - p.m_vertices[vertIndex1].y; var length

2016/03/16 codes

<!DOCTYPE html><html><head lang="en"> <meta charset="UTF-8"> <title>导航条2</title> <style type="text/css"> *{ margin: 0; padding: 0; list-style: none; } #nav{ width: 1000px; margin:10px

2016/03/07 codes

Features.prototype = { set_referenceFace:function(value){ this._referenceFace = value; this._m_id._key = (this._m_id._key & 0xffffff00) | (this._referenceFace & 0x000000ff) }, get_referenceFace:function(){return this._referenceFace;},_referenceFac

2016/03/01 codes

if(deltaUpper > 0){ index = upperIndex; while(index < boundCount - 1 && bounds[index + 1].value <= upperValue){ bound = bounds[index]; nextBound = bounds[index + 1]; nextProxyId = nextBound.proxyId; nextProxy = this.m_proxyPool[nextProxyI

2016/03/05 codes

var tMat = poly1.m_R; normal1X = tMat.col1.x * tX + tMat.col2.x * normal1Y; normal1Y = tMat.col1.y * tX + tMat.col2.x * normal1Y; var normalLocal2X = normal1X; var normalLocal2Y = normal1Y; tMat = poly2.m_R; tX = normalLocal2X * tMat.col1.x + normalL

OC第七天笔记2016年03月22日(周二)A.M

1. 可变字符串 NSMutableString* mstr = [[NSMutableString alloc] initWithCapacity:10]; 增 删 改 替换 //[mstr length] [mstr insertString:@"http://" atIndex:0]; //第一个参数:即将要插入的字符串 //第二个参数:插入的位置(下标) NSLog(@"%@",mstr); //http://www.baidu.com [mstr inse

分布式技术一周技术动态 2016.07.03

分布式系统实践 1. 前Google工程师谈分布式系统的特点以及设计理念 https://mp.weixin.qq.com/s?__biz=MzA5Nzc4OTA1Mw==&mid=2659597608&idx=1&sn=433916db50f0965029c8ce99a36d2014&scene=0&key=77421cf58af4a653413826909a3d57f283978e4108a1537d305ffbfb0c264ce1871e263464ac10a