摘要: 基于jPlayer制作的音/视频播放器3枚! 阅读全文
posted @ 2014-12-03 13:53 K13 阅读(170) 评论(0) 推荐(0) 编辑
摘要: css:#box { width: 200px; height: 100px; overflow-y: auto;}javascript:$(function () { $("#box").scroll(function () { if ($(this).scr... 阅读全文
posted @ 2014-12-03 13:52 K13 阅读(210) 评论(0) 推荐(0) 编辑
摘要: window.onload事件是在页面dom元素加载完后执行,也就包括了img图片中src加载完成,那么img.onload 就不会执行了。$("img").each(function () { var src = $(this).attr("src"); $(this).attr("src",""... 阅读全文
posted @ 2014-12-03 13:51 K13 阅读(4382) 评论(0) 推荐(0) 编辑
摘要: IE6-7-8是不支持背景色渐变或者半透明背景色的,但是可以使用其私有滤镜实现,而IE滤镜所使用的颜色是8位16进制颜色,每次都算很麻烦,所以写个小工具。下载效果如图: 阅读全文
posted @ 2014-12-03 13:50 K13 阅读(328) 评论(0) 推荐(0) 编辑
摘要: Demo下载效果如图:css: #box { width: 280px; height: 150px; background: #ff6565; padding: 20px; position: relative; overflow: hidden; } #content { widt... 阅读全文
posted @ 2014-12-03 13:49 K13 阅读(301) 评论(0) 推荐(0) 编辑
摘要: Demo下载效果如图:css: a { display: inline-block; color: #fff; font-size: 12px; text-decoration: none; padding: 0 5px; height: 24px; text-align: cente... 阅读全文
posted @ 2014-12-03 13:48 K13 阅读(578) 评论(0) 推荐(0) 编辑
摘要: Demo下载 效果如图:js: css: #loading_box { width: 46px; height: 46px; position: absolute; top: 50%; left: 50%; margin: -23px 0 0 -23px; } #loading_box... 阅读全文
posted @ 2014-12-03 13:47 K13 阅读(241) 评论(0) 推荐(0) 编辑
摘要: Demo下载获取iframe的document: function iframeDom(id) { return document.getElementById(id).contentDocument||document.frames[id].document; }jquery: window.o... 阅读全文
posted @ 2014-12-03 13:46 K13 阅读(884) 评论(0) 推荐(0) 编辑
摘要: 中文,英文,中英混合都有不错的效果: text-align:justify; text-justify:inter-ideograph; 阅读全文
posted @ 2014-12-03 13:45 K13 阅读(121) 评论(0) 推荐(0) 编辑
摘要: jQuery select美化插件。 下载效果如图:可设参数:"width": "", //设置宽度"id": "", //追加id"class": "" //追加class下载地址示例:页面引入: 调用方法:如果使用默认设置,如下: $("#s1").selectForK13();如果自定义参数... 阅读全文
posted @ 2014-12-03 13:44 K13 阅读(132) 评论(0) 推荐(0) 编辑