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

代码片段 8064

#CSS
表格样式

table.gridtable { font-family: verdana,arial,sans-serif; font-size:11px; color:#333333; bo…

css
2015-12-14 140

#CSS
纯css3实现超级好看的灯光闪烁效果进度条

@-webkit-keyframes bump { 0% { opacity: 0; left: 535px; } 100% { left: -10px; opacity: 0; …

css
2015-12-14 450

#CSS
方便随时查看喜欢需要的html颜色值

<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title&g…

css
2015-12-14 386

#CSS
CSS的div块各种边框

<div>方形框</div> <div class="rounded">圆角形框</div> <div class="asym…

css
2015-12-14 407

#CSS
css3小萌物弹跳跳效果

<div class="ball"></div>

css
2015-12-14 923

#CSS
div+css背景渐变色代码

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

css
2015-12-14 568

#Groovy
groovy实现的简易tree命令

path = "." as File if (args) { path = args[0] as File } printDir path,0 def printDir(File …

2015-12-14 654

#Groovy
用 Gretty 编写一个简单的 HTTP 服务器【Groovy版】

/* * Copyright 2009-2010 MBTE Sweden AB. * * Licensed under the Apache License, Version 2.…

2015-12-14 221

#Groovy
grails导出excel

/** * 构建excel * @param block 闭包,封装构建逻辑 */ def build(dataList,titleList,out,Closure block){…

2015-12-14 994

#Groovy
Top n 动态查询

def bjSectionInstance = BjSection.get(params.id) if (!bjSectionInstance) { flash.message =…

2015-12-14 742

#Groovy
在 Gwitter 中添加 File 菜单

import groovy.swing.SwingBuilder import javax.swing.* import java.awt.* class Gwitter{ sta…

2015-12-14 170

#Lua
Lua实现类继承的一种写法

--[[ author:looyer@sina.com date:2014/7/18 purpose:lua的继承演示 --]] --- base class "Object" l…

lua
2015-12-14 965
1 49 50 51 52 53 672