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

代码片段 8064

#CSS
文字反向

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/ht…

css
2015-12-14 302

#CSS
手势解锁,移动端支持TouchEvent

$width: 40px; $border: 2px; body { -webkit-user-select: none; user-select: none; cursor: c…

css
2015-12-14 542

#CSS
恢复容器里所有html元素的默认样式

/* 将dcss容器里的所有元素设为默认值 */ .dcss html,.dcss address,.dcss blockquote,.dcss body,.dcss dd,.dc…

css
2015-12-14 708

#CSS
CSS3 制作响应式圆形菜单

*{margin:0; padding:0;} body{background-color: #E2E2E2;}   /** 整个菜单的宽度为50% 可以更具自己需求改 borde…

css
2015-12-14 682

#CSS
表格,表头不动,内容滚动

<!doctype html> <html> <head> <meta charset="utf-8"> <title>…

css
2015-12-14 690

#CSS
verifyactivate_widgets()隐藏在WordPress主题下的恶意代码

function _verifyactivate_widgets(){ //当前文件名,如/path-to-www/wp-content/themes/SimpleDark/fun…

css
2015-12-14 837

#CSS
呃~~用css3实现安卓logo~会动哦~

div {margin: o; padding: 0;} div div {background: #A4CA39; position: relative;} .android{ …

css
2015-12-14 343

#Groovy
Groovy脚本替换多文件中的文本

def currentDir = new File("d:/bakup"); def backupFile; def fileText; //Replace the content…

2015-12-14 213

#SQL
用于校验 SQL Server 数据库备份的脚本

USE MASTER -- Add a new backup device -- Ensure that the SQL Server can read from the phys…

sql
2015-12-13 485

#Python
查询oralce数据库返回数据字典

def sqlDiy(self, sql): db = Oradao().connect() cursor = db.cursor() cursor.execute(sql) re…

2015-12-13 707

#HTML
CSS+HTML+JQuery简单菜单

<style type="text/css"> body,ul,li,a{ margin:0; padding:0 } ul,li{ list-style-type:n…

2015-12-13 565
1 79 80 81 82 83 672