JavaScript-Css
u010448864
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
页面图片显示(按比例缩放)
[code="js"]function scaleImage(ImgD, FitWidth, FitHeight){ var width = ImgD.width, height = ImgD.height; var w = width / FitWidth, h = height / FitHeight; if (w >= h) { //宽度固定,高度缩放 ...2008-03-17 21:58:00 · 798 阅读 · 0 评论 -
添加到收藏夹
[code="js"]function addBookmark(title,url) { //添加到收藏夹 if (window.sidebar) { window.sidebar.addPanel(title, url,""); } else if( document.all ) { window.external.AddFavor...2008-03-17 22:06:12 · 112 阅读 · 0 评论 -
设置为首页
[code="js"]function setHomePage_me(obj) { //设置为首页 if (document.all) { obj.style.behavior='url(#default#homepage)';obj.setHomePage('http://www.xunSir.lee.com') } else { if...2008-03-17 22:12:34 · 168 阅读 · 0 评论 -
表单中的span标签中的字符不能完整显示问题
今天,填充页面,表单中的span标签中的字符不能完整显示(IE): 进入页面时,有时可以显示,有时不显示,点击“刷新”(ajax的)时,就不能显示;用鼠标圈选时,字符出现。最后发现是form标签的背景着色了,去掉form标签的背景色,就OK了。 也有可能是不规范的 float 使用方式造成的...2008-03-20 23:09:21 · 1770 阅读 · 0 评论 -
http://sandbox.leigeber.com/tinybox/
http://sandbox.leigeber.com/tinybox/原创 2009-05-27 09:07:41 · 157 阅读 · 0 评论 -
Div 遮挡 Flash
<div style="height: 97px; width: 255px; position: relative;"> <div style="height: 97px; width: 255px;"> <object height="97" width="255" data="/static/images/xnw/thelook/mo原创 2008-12-25 15:12:31 · 126 阅读 · 0 评论 -
CSS 选择符
一.选择符模式 模式/含义/内容描述 * 匹配任意元素。(通用选择器) E 匹配任意元素 E (例如一个类型为 E 的元素)。(类型选择器) E F 匹配元素 E 的任意后代元素 F 。(后代选择器) E > F 匹配元素 E 的任意子元素 F 。(子选择器) E:first-child 当元素 E 是它的父元素中的第一个子元素时,匹配元素 E 。(:fir...原创 2009-01-02 22:32:24 · 158 阅读 · 0 评论 -
模拟 marquee
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><style>* { margin: 0; padding: 0;}#r...原创 2009-01-15 13:22:30 · 139 阅读 · 0 评论
分享