Submitted by anlee on 2010, July 29, 9:30 AM
原文发表于:Alipay UED Blog – 打败 IE 的葵花宝典:CSS Bug Table
英文链接:HasLayout.net
作为一名前端,我们通常要做的就是让页面在各系统A-Grade浏览器,甚至网站浏览份额0.1%以上的浏览器上良好显示。当然,还有性能问题。不 过,今 天要说的是样式的兼容问题。在IE/Mozilla/Webkit/Opera四分天下的今天,IE6-9/Mozilla(Gecko)系列 /Chrome/Safari/Opera etc. 这些浏览器的兼容,无不让前端们头痛。而在这之中,最让人头痛的当数IE,特别是IE6。搞定了IE6,基本也就能称霸半个江山了。搞定了IE,也相当于 占领了7、80%的领地。你想做一个统治页面兼容的主么?反正我是想的
» 阅读全文
Tags: css, css bug
CSS | 评论:3
| Trackbacks:0
| 阅读:234
Submitted by anlee on 2010, July 14, 3:15 PM
1、设计的朋友都熟悉,在XP系统系列 [我的电脑]与[资源管理器]中有好几种格式的文件是无法浏览缩略图的,只有在安装相应的软件以后,才可以在查看它们的缩略图,photoshop- CS2系列都没有了这个文件。
补丁支持ai、psd、cdr、eps图片缩略图浏览功能。这个小补丁很实用,安装也很简单,依次点击,然后把注册表导入即可,我测试了一下,运行正常。
安装方法:如果只需要支持某种格式,请点击相应的REG文件即可安装,如果全部安装请直接用增加缩略图补丁.EXE即可。
安装包:psd[1].ai缩略图补丁.rar
2、在windows XP的文件管理显示方式中的缩略图,对于photoshop产生的PSD文件是不起作用的,不过装了这个补丁PSD格式的图就能和JPG.PNG等图片一 样显示缩略图了。
使用方法:把psicon.inf和psicon.dll拷贝到:C:\Program Files\Common Files\Adobe\Shell文件夹下,然后鼠标右击psicon.inf文件,选“安装”命令即可
安装包:xp下psd缩略图显示补丁补丁.rar
我机器没有cdr、eps文件,测试了一下ai、psd:

Tags: 缩略图补丁, photoshop, 缩略图浏览
软件工具 | 评论:1
| Trackbacks:0
| 阅读:199
Submitted by anlee on 2010, May 11, 9:18 AM
即twitter、facebook、youtube、blogger被封杀后,世界上最伟大的云存储服务之一——Dropbox被证实无法从中国地区访问,客户端和网站均无法正常连接和登录,我先前曾经多次推荐过这个伟大的服务,没想到这么快Dropbox就惨遭毒手。目前,中国用户已经无法通过Dropbox客户端和Web网页访问Dropbox,已经连接上Dropbox服务器的客户端一经退出就会无法再登 录,显示的现象是Connecting一直在持续却连接不上,从客户端点“Launch Dropbox Website”也无法打开网页登录。封锁Dropbox的方式是关键字封锁和IP封锁,关键字为“.dropbox.com”,IP为Dropbox官方网站的IP,可谓是全方面 地定点封锁。
用户可以修改hosts可以继续访问Dropbox。(不便公开传播请自行搜索),不要直接公布地址,越多人直接见到教加IP的方法,这个IP就越容易被封。说说用什么方法找到那个IP更好。 我是启动dropbox后用smartsniff抓包得到IP的。
我疼恨这些封杀屏蔽!希望谷歌一直能走下去...
Tags: dropbox, 云存储服务
软件工具 | 评论:1
| Trackbacks:0
| 阅读:306
Submitted by anlee on 2010, March 3, 3:27 PM
CSS | 评论:4
| Trackbacks:0
| 阅读:895
Submitted by anlee on 2010, March 2, 2:30 PM

JS代码:
JavaScript代码
- <script src="http://code.jquery.com/jquery-1.4.1.min.js"></script>
- <script type="text/javascript">
-
- $(document).ready(function()
- {
-
- $('#menuBar li').click(function()
- {
- var url = $(this).find('a').attr('href');
- document.location.href = url;
-
- });
-
- $('#menuBar li').hover(function()
- {
-
- $(this).find('.menuInfo').slideDown();
- },
- function()
- {
-
- $(this).find('.menuInfo').slideUp();
-
- });
-
- });
-
-
- </script>
(X)HTML代码:
XML/HTML代码
- <div id="menuBarHolder">
-
- <ul id="menuBar">
-
- <li class="firstchild"><a href="javascript:#">Home</a>
-
- <div class="menuInfo">I am some text about the home section</div></li>
- <li><a href="javascript:#">Services</a>
-
- <div class="menuInfo">I am some text about the services section</div></li>
- <li><a href="javascript:#">Clients</a>
-
- <div class="menuInfo">I am some text about the clients section</div></li>
- <li><a href="javascript:#">Portfolio</a>
-
- <div class="menuInfo">I am some text about the portfolio section</div></li>
- <li><a href="javascript:#">About</a>
-
- <div class="menuInfo">I am some text about the about section</div></li>
- <li><a href="javascript:#">Blog</a>
-
- <div class="menuInfo">I am some text about the blog section</div></li>
- <li><a href="javascript:#">Follow</a>
-
- <div class="menuInfo">I am some text about the follow section</div></li>
- <li><a href="javascript:#">Contact</a>
-
- <div class="menuInfo">I am some text about the contact section</div></li>
-
- </ul>
-
- </div>
- </div>
CSS代码
CSS代码
- #menuBarHolder { width: 730px; height:45px; background-color:#000; color:#fff; font-family:Arial; font-size:14px; margin-top:20px;}
- #menuBarHolder ul{ list-style-type:none; display:block;}
- #container { margin-top:100px;}
- #menuBar li{ float:left; padding:15px; height:16px; width:50px; border-right:1px solid #ccc; }
- #menuBar li a{color:#fff; text-decoration:none; letter-spacing:-1px; font-weight:bold;}
- .menuHover { background-color:#999;}
- .firstchild { border-left:1px solid #ccc;}
- .menuInfo { cursor:hand; background-color:#000; color:#fff;
- width:74px; font-size:11px;height:100px; padding:3px; display:none;
- position:absolute; margin-left:-15px; margin-top:-15px;
- -moz-border-radius-bottomright: 5px;
- -moz-border-radius-bottomleft: 5px;
- -webkit-border-bottom-left-radius: 5px;
- -webkit-border-bottom-rightright-radius: 5px;
- -khtml-border-radius-bottomright: 5px;
- -khtml-border-radius-bottomleft: 5px;
- border-radius-bottomright: 5px;
- border-radius-bottomleft: 5px;
- }
Demo
Download
Tags: css导航
CSS | 评论:1
| Trackbacks:0
| 阅读:510
Submitted by anlee on 2010, February 21, 3:35 PM
Tags: php, html, css
开发手册 | 评论:1
| Trackbacks:0
| 阅读:520
Submitted by anlee on 2010, February 9, 11:34 AM
前端开发有不少人使用模板,boilerplates,和HTML 5样式。Remy 介绍了一些 basic boilerplates for HTML 5, 为了保持这样,国外人修改Eric Meyer’s CSS reset 你可以用在你的HTML 5 页面中。
The code:
XML/HTML代码
- /*
- html5doctor.com Reset Stylesheet
- v1.4
- 2009-07-27
- Author: Richard Clark - http://richclarkdesign.com
- */
-
- html, body, div, span, object, iframe,
- h1, h2, h3, h4, h5, h6, p, blockquote, pre,
- abbr, address, cite, code,
- del, dfn, em, img, ins, kbd, q, samp,
- small, strong, sub, sup, var,
- b, i,
- dl, dt, dd, ol, ul, li,
- fieldset, form, label, legend,
- table, caption, tbody, tfoot, thead, tr, th, td,
- article, aside, dialog, figure, footer, header,
- hgroup, menu, nav, section,
- time, mark, audio, video {
- margin:0;
- padding:0;
- border:0;
- outline:0;
- font-size:100%;
- vertical-align:baseline;
- background:transparent;
- }
-
- body {
- line-height:1;
- }
-
- article, aside, dialog, figure, footer, header,
- hgroup, nav, section {
- display:block;
- }
-
- nav ul {
- list-style:none;
- }
-
- blockquote, q {
- quotes:none;
- }
-
- blockquote:before, blockquote:after,
- q:before, q:after {
- content:'';
- content:none;
- }
-
- a {
- margin:0;
- padding:0;
- border:0;
- font-size:100%;
- vertical-align:baseline;
- background:transparent;
- }
-
- ins {
- background-color:#ff9;
- color:#000;
- text-decoration:none;
- }
-
- mark {
- background-color:#ff9;
- color:#000;
- font-style:italic;
- font-weight:bold;
- }
-
- del {
- text-decoration: line-through;
- }
-
- abbr[title], dfn[title] {
- border-bottom:1px dotted #000;
- cursor:help;
- }
-
- table {
- border-collapse:collapse;
- border-spacing:0;
- }
-
- hr {
- display:block;
- height:1px;
- border:0;
- border-top:1px solid #cccccc;
- margin:1em 0;
- padding:0;
- }
-
- input, select {
- vertical-align:middle;
- }
这里你可以下载:
http://code.google.com/p/html5resetcss/downloads/list
文章来自:http://html5doctor.com/html-5-reset-stylesheet/
Tags: html5
(X)HTML | 评论:0
| Trackbacks:0
| 阅读:303
Submitted by anlee on 2010, February 9, 11:08 AM
Tags: css手册, html5手册, jquery手册
开发手册 | 评论:0
| Trackbacks:0
| 阅读:464
Submitted by anlee on 2010, January 13, 9:26 AM
Colr
Colr has been around since March 2005. It’s a tool to let people fiddle around with colors and it’s a jungle gym for software ideas. It has a pretty neat function: you can load colors from a random image or your own image.
ColorJack
ColorJack is one of the best websites to go to for a little inspiration on what is the best combination of color pallets to use on your website. It also has a few variations of it via sphere and galaxy.
Redalt
Redalt is a unique wordpress site that has a color analyzer. You submit your website and the analyzer picks up which colors are used in your template and then groups it based on hues , shades of a certain color as well as showing you where the colors come from via css stylesheet.
DaGraeve
DaGraeve has a pallets generator that gives you colors based on the pictures you upload. It is excelent to find color pallets for projects where you get some content images from your clients. I used it for my projects a few times and it worked like a charm.
Colour Lovers
Colour Lovers is the best community out there for color pallets and schemes. It is insane at how dedicated this website is towards website color scheme that it makes you feel like you can do SO much more ! You can register for free and contribute with your own color pallets or patterns.
» 阅读全文
Tags: 配色方案, 调色板
网页设计 | 评论:0
| Trackbacks:0
| 阅读:402
Submitted by anlee on 2009, December 21, 1:35 PM
漂亮100是国内领先的、以女性消费者为主导的,集合信息数据、购物、多样化服务为一体的新型网络时尚生活平台,是专注于美容护肤产品的一站式导购型B2C电子商务平台。
漂亮100作为全媒体整合互动营销专家,通过全新的电子商务模式,致力于构建国内最具影响力的立体化、全媒体资源服务平台,为用户提供完善的、一站式的宣传服务解决方案。
漂亮100通过时尚妆品信息分享、网上化妆品购买、活动互动、口碑推荐等方式,为追求生活品质的都市时尚人群打造一个精致的时尚生活互动空间,引领时尚人群的流行消费导向。
漂亮100将为您提供舒心、专业、体贴和信赖的网上购物新体验。以多种个性化的、贴心周到的服务,让您感受漂亮100无微不至的贴心关怀。从而能在不同层面帮助用户更好地进行消费决策,让您足不出户,却走在美丽的前沿!品味时尚生活,尽享购物乐趣,就在漂亮100!
技术部:
初中级运维工程师(1人)
岗位职责:
1、负责公司服务器的运维工作;
2、负责公司设备的日常维护及管理;技术档案维护;
3、负责内部信息系统建设、维护;进行域名、后台数据、邮箱管理;
任职资格:
1、计算机或IT相关专业,英语水平较好;
2、一年的网络管理、服务器网管工作经验,熟悉Windows,linux系统管理;
3、熟悉路由器,交换机、防火墙的网络设备的设置与管理;
4、熟悉Apache、Mysql、php等网站常用软件安装与维护;
5、熟悉RedHat Linux系统下的各种管理,服务配置,系统安全设置,系统监控;
6、学习能力强,较好的沟通和协作能力,较强的执行力和沟通能力,具备良好的服务意识
更多职位:漂亮100官方网
Tags: 漂亮100
站长日记 | 评论:3
| Trackbacks:0
| 阅读:979