首页 > 网站 > WEB开发 > 正文

近期前端笔记

2024-04-27 15:09:58
字体:
来源:转载
供稿:网友
1、tabindex="-1"则在使用[Tab]键时,此元素被忽略。注意:如果使用-1值时,onfocus与onblur事件仍被启动。2、button标签是行内元素3、<span class='sr-only'>40% Complete</span>'sr-only'表示该元素不显示,只用于屏幕阅读器屏幕阅读器可以把"40% Complete"念出来,以方便残障人士4、三角形CSS:<style>.abc{position: absolute;top: 20px;left: 50px;border: 10px solid #f63;border-left-color: transparent;border-right-color: transparent;border-top-color: transparent;}</style><div class="abc"></div>5、http://help.dangdang.com/index  常见问题小广告不错6.http://wiki.cn.mikecrm.com/faq 每个list的样式很好看7、http://www.ganji.com/newhelp/ banner是一张简单的CSS3动画8、<meta http-equiv="X-UA-Compatible" content="IE=Edge">   <meta name="renderer" content="webkit"> html打开强制为极速模式9、http://www.Vevb.com.cn/jquery/Ajax_get.aspfunction rd(){$.get('data/td.txt').success(function(content){ alert(content);}); }2015年12月-2016年8月用过,今天有人发给我,知道大概怎么回事了,值得研究10、find 找到的是数组 标准要用  eq    $(this).find('en').eq(0).text();11.inline-block 清空隙 </li><li放一行12、$('body').css('height',$('.wrap').css('height'))13、CSS抗锯齿 font-smoothing 属性body{ -webkit-font-smoothing: antialiased; } -moz-osx-font-smoothing: inherit | grayscale这个属性也是更清晰的作用,特别是图标文字流行的今天。14、<style> @font-face{font-family: myFirstFont;src: url('/example/css3/Sansation_Light.ttf')    ,url('/example/css3/Sansation_Light.eot'); /* IE9+ */}div{font-family:myFirstFont;}</style>15、竖向居中最简单的方法(三行CSS3代码).element {  position: relative;  top: 50%;  transform: translateY(-50%);}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表