js
iteye_14360
这个作者很懒,什么都没留下…
展开
-
input[type=file]文件样式太丑,自定义样式
原始的file控件在搜狗浏览器上很丑。自定义样式使其美观。[code="html"]定义input type="file" 的样式.file-box{ position:relative;width:340px}.txt{ height:22px; border:1px solid #cdcdcd; width:180px;}.btn{ backgrou...原创 2014-03-25 17:06:42 · 466 阅读 · 0 评论 -
进度条
单一的进度条[code="html"] 进度条 .graph{ width:150px; border:1px ridge silver; border-radius:20px;height:10px; } .bar{ display:block; background:highlight; float:left; hei...原创 2014-04-04 10:57:29 · 143 阅读 · 0 评论 -
代码高亮插件SyntaxHighlighter
[color=gray][b][size=medium]SyntaxHighlighter是一个非常不错的代码高亮工具,支持各种平台,只需要前台载入代码即可。第一步:1、引入需要的js和css 这三个是必须的,如果需要给xml代码高亮显示,则需要引入xml相关的js。这个是css需要的js这个是java需要的js...原创 2014-04-18 10:23:21 · 113 阅读 · 0 评论 -
使用Iframe实现TAB页面切换
[code="java"]package com.it.springweb.controller;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web...原创 2014-05-15 17:38:43 · 1892 阅读 · 0 评论