分类 Typecho 下的文章

移除手机上 a 标签点击时产生的背景色


-webkit-tap-highlight-color: red;
-webkit-tap-highlight-color: transparent;  /* for removing the highlight */

input, select, textarea, button, a {
    -webkit-tap-highlight-color:#ccc; 
}
 
/* I think this is the right shade of gray... The opacity is not specified so that the native value will be used.. */

Bootstrap 取消 Button focus 后的橙色框

Bootstrap 3.4 在 Chrome 上的 Button 在 focus 后会出现橙色框,注释以下 css 就没有了。

gl3ej.png


.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus {
    /*outline:thin dotted;*/
    /*outline:5px auto -webkit-focus-ring-color;*/
    /*outline-offset:-2px*/
}

今天发现博客居然没加载 jQuery 库

今天逛网友的博客,看他的 pjax 教程说 "注意引入的 jQuery 的版本,推荐用 2.0.1 或更高,我使用的 jQuery 为 3.3.1 版本",然后我就打开我的博客想升级下我的 jQuery 版本,没想到发现没找到???

这就很尴尬了,我说我的 typecho 破站自从上了 pjax 点击导航栏切换怎么这么慢呢?!

应该是以前整理代码时不小心删掉了,居然忍了这么久 233 ~ 赶紧加上,jQuery 等都用最新版本,不然不兼容会报错。

pjax 配合 instantclick 食用,切换网页丝丝顺滑。。。

Typecho 反垃圾评论插件 SmartSpam

Typecho 博客加上 Pjax 后,评论出了点问题,只能照着网上的建议关闭 开启反垃圾保护。但没想到以前从没遇到过的垃圾评论蜂拥而至,都是些老外的推广文,内容是全英文混杂网址或者邮箱那种。经过一番搜索,终于找到了大神写的 SmartSpam 智能评论过滤插件,装上后,世界又清静了。

继续阅读 »