内容正在载入中,请稍后……
日历
选择模板
1、本站部份资源来源于网络,如有侵权请及时与我联系!
2、本站空间由“逸鸿网络”提供,在此表示感谢!
3、强烈建议使用Firefox、Opera、Safari及IE7以上的浏览器访问,并将浏览器默认字体设为“微软雅默”,以获得最佳浏览质量!
4、本站所有内容,包括文字、图片等,均完全遵循《创作共用约定》,任何个人或组织违反此约定,本站保留诉诸法律的权利!
29 Sep.2008

14套CSS菜单栏样式

作者: yeyo   分类:网络生活   出处:rapidz.tk   
  Highslide JS

  来自rapidz.tk站点的14套CSS菜单栏样式,部份样式里含有PSD源文件,大家不防大胆的用于你自己的站点上面,呵呵!
时间:14:23 评论(2) 引用(0) 阅读(219) Tags: ,
6 Nov.2007

常用CSS缩写语法总结

作者: yeyo   分类:网络生活   出处:本站原创   
使用缩写可以帮助减少你CSS文件的大小,更加容易阅读。css缩写的主要规则如下:
颜色(color)
16进制的色彩值,如果每两位的值相同,可以缩写一半,例如:
#000000可以缩写为#000;#336699可以缩写为#369;
边框(border)
边框的属性如下:
border-width:1px;
border-style:solid;
border-color:#000;
可以缩写为一句:border:1px solid #000;
语法是border:width style color;
时间:13:55 评论(4) 引用(0) 阅读(5694) Tags: , , , , ,
16 May.2007

超链接鼠标悬停提示框 FOR bo-blog

作者: yeyo   分类:我的作品   出处:本站原创   
Highslide JS

看到论坛上一个朋友要的,丢在硬盘N久了,现在整理一下发出来,申明这不是bo-blog的插件,只是一个CSS+JS的链接提示效果而已。用法:
1、下载附件解压得到两个文件夹,上传到blog根目录。
2、进入后台-模块配置,新建一个
<head>
模块,并输入以下代码:
时间:17:00 评论(4) 引用(0) 阅读(8939) Tags: , , ,
4 May.2007

53 CSS-Techniques You Couldn’t Live Without

作者: yeyo   分类:网络生活   出处:本站原创   
Highslide JS

CSS is important. And it is being used more and more often. Cascading Style Sheets offer many advantages you don’t have in table-layouts - and first of all a strict separation between layout, or design of the page, and the information, presented on the page. Thus the design of pages can be easily changed, just replacing a css-file with another one. Isn’t it great? Well, actualy, it is.Over the last few years web-developers have written many articles about CSS and developed many useful techniques, which can save you a lot of time - of course, if you are able to find them in time. Below you’ll find a list of techniques we , as web-architects, really couldn’t live without. They are essential and they indeed make our life easier. Let’s take a look at 53 CSS-based techniques you should always have ready to hand if you develop web-sites.
时间:17:29 评论(2) 引用(0) 阅读(7032) Tags:
19 Mar.2007

利用CSS实现简单的图片防盗链代码

作者: yeyo   分类:心情日志   出处:本站原创   
实现方法很简单在CSS中添加以下代码,然后修改下面的图片路径,随便找个乱七八糟的图放上去,就OK. 另存起来还是有点头疼的,要看源代码才行。实现这个方法同样用到了CSS的expression功能。什么是expression请参见http://blog.nzye.com/read.php/205.h...这里。
img {
filter:expression(
this.不能去掉 ? "" :
(
(!this.complete) ? "" :
this.runtimeStyle.filter = ("progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "')") +
String(this.不能去掉 = true).substr(0, 0) +
(this.src = "http://blog.nzye.com/images/clear.gif").substr(0, 0)
)
);
}
时间:09:26 评论(2) 引用(0) 阅读(8129) Tags: , , ,
分页: 1/2 第一页 1 2 下页 最后页 [ 显示模式: 摘要 | 列表 ]