摘要:
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#3568CC', endColorstr='#FFFFFF', GradientType='0'); /* IE6,IE7 */-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#3568CC', endColorstr='#FFFFFF',GradientType='0'); /* 阅读全文
摘要:
a,area { blr:expression(this.onFocus=this.blur()) } /* for IE */:focus { -moz-outline-style: none; } /* for Firefox */a { outline:none; } /* for FF Chrome */ 阅读全文
摘要:
jquery折叠列表<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; 阅读全文
摘要:
1:鼠标点击时候促发$(“p”).click(function(){ alert(“hello world”); });2:增加删除class$(“a”).addClass(“test”); $(“a”).removeClass(“test”);3:show( )和html()的使用$(“a”).addClass(“test”).show().html(“foo”);4:特效hide( )$(“a”).click(function(){$(this).hide(“slow”);return false;});点击超链接,超链接就会慢慢的消失。“return false”表示保留默认行为,因此页 阅读全文
摘要:
1.Flex音乐播放器:http://www.oschina.net/code/snippet_127970_5166 之前写过一个as 3.0的代码,音乐第二遍播放有bug,这个Flex的音乐播放器还米试过。2.github教程:http://www.cnblogs.com/fnng/archive/2012/01/07/2315685.html http://www.cnblogs.com/fnng/archive/2011/08/25/2153807.htmlhttp://www.cnblogs.com/rppig/archive/2012/02/04/2338651.htmlhttp. 阅读全文
摘要:
a.在HTML中书写只让 IE 6 执行的写法: <!--[if lte IE 6]><![endif]--> 补充:IE条件注释是一种特殊的HTML注释,这种注释只有IE5.0及以上版本才能理解。比如普通的HTML注释是:<!--This is a comment-->而只有IE可读的IE条件注释是:<!--[if IE]> <![endif]-->“非IE条件注释”:<!--[if !IE]>--> non-IE HTML Code <!--<![endif]-->“非特定版本IE条件注释”(很 阅读全文
摘要:
package{ import flash.display.Bitmap; import flash.display.BitmapData; import flash.display.Sprite; import flash.display.StageAlign; import flash.display.StageScaleMode; import flash.geom.Rectangle; public class test extends Sprite { public function test() { stage.align = StageAlign.TOP_LEFT; ... 阅读全文
摘要:
一、加载1.加载库中的音乐 var sy:XXXX =new XXXX(); //声明变量 sy.play //控制声音播放注:库中音乐文件XXXX.mp3,右键-链接-勾上 为ActionScript导出,类(名)自定义(或者可以和库文件名相同) XXXX,基类 flash.media.Sound,确定-确定;2.加载本地的声音 var dizhi:URLRequest =new URLRequest("XXXX.mp3"); //声明地址,括号中因为文件和音乐同目录 var shengyin:Sound =new Sound; //声明声音对象 sh... 阅读全文
摘要:
昨晚开始在看张亚飞编著的那本《HTML+XHTML+CSS+JavaScript+DOM+AJAX》语法及范例实用词典。 看到一些以前没有遇到过的元素,而且在一些其他html相关参考书中都没有出现过,如wbr。综合了一些说法,整理得一下结果: wbr元素 功能:软换行 解释:就是相对于<br />的,<br />是此处必须换号;而<wbr>意思就是浏览器窗口或者父级元素的宽度足够宽时(没必要换号时),不进行换行,而当宽度不够时,主动在此处进行换行。如:当正常情况下英文宽度过小,不足以在行末书写完一个词时,就将行末整个词放到下一行,实现换行,但是加入上面位置的 阅读全文