首页 软件开发 代码片段 html ( Page 26 )

html 632

#HTML
背景透明,文字不通明的做法

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xh…

2015-06-02 211

#HTML
让你的博客翻转180度

html{ filter:fliph } body{ -webkit-transform: rotateY(180deg); -moz-transform: skew(0deg, …

2015-06-01 659

#HTML
项目中经常使用的ajax写法分享

function getPhoneInfoByModelId(model_id){ if(model_id){ $.ajax({ url: "${applicationScope.…

2015-06-01 246

#HTML
CSS用◆符号制作的小三角气泡提示框效果

<html> <head> </head> <title></title> <style> .poptip{…

2015-05-31 131

#HTML
屏蔽鼠标右键、Ctrl+N、Shift+F10、Alt+F4、F11、F5刷新、退格键

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=u…

2015-05-31 697

#HTML
制作的单页html演示

<article class="row feature-row"> <div class="col-md-3"> <div class="gfx gf…

2015-05-31 911

#HTML
处理移动端PPI过高问题

<!DOCTYPE html> <head> <meta charset="utf-8"> <meta id="aa" name="vie…

2015-05-30 612

#HTML
.

html { background: rgb(229,229,229); } /* blogs */ #blogs { width: 760px; margin: 0 auto; …

2015-05-30 961

#HTML
jquery win8风格的图片九宫格布局鼠标悬停滑动切换

/* 参数说明 w:宽度 h:高度 l:左侧距离 t:顶部距离 bg:默认底色 cbg:鼠标划过后底色 *参考单元格宽高:127,边距:12(可根据自己意思自由设定。只要好看就行)…

2015-05-30 664

#HTML
来自渴切css的兼容各浏览器的fixed定义

/* 兼容IE6的定位属性fixed,固定不动样式 来源:http://www.keqie.com */ .fixed{ position:fixed; clip:rect(0 1…

2015-05-29 799

#HTML
华丽的滑动解锁,用于留言板评论框

<!DOCTYPE html> <html> <head> <title></title> <meta http-…

2015-05-28 947

#HTML
取消chrome输入框高亮的办法

/* remember to define focus styles! */ :focus { outline: 0; }

2015-05-28 170
1 24 25 26 27 28 53