Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sneezry/fe-issues
https://github.com/sneezry/fe-issues
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sneezry/fe-issues
- Owner: Sneezry
- Created: 2015-08-23T07:43:04.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-11T05:38:31.000Z (over 9 years ago)
- Last Synced: 2024-11-08T15:50:02.380Z (about 2 months ago)
- Size: 141 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FE Issues
## 安卓版本微信的内置浏览器无法更改 `input[type=radio]` 的尺寸
Solution: 在单选控件上覆盖一个 `label` ,控制 `label` 的尺寸
## iOS6 和 iOS7 中 canvas 无法正确处理图片高度
Solution: http://stackoverflow.com/questions/11929099/html5-canvas-drawimage-ratio-bug-ios
## 安卓中,`text-align` 属性 `justify` 值个别时候渲染有问题,尤其在行中用空格时,空格会被拉长
Solution: 尽量不用 `justify`,对于标题、口号等必须两端对齐的地方用图片替换
## IE9不识别 `application/json` MIME,会下载处理
Solution: 更改 MIME
## 除 Chrome 浏览器外,火狐浏览器和 IE 浏览器(Safari 和 Opera 没有测试),$(selector).css('background-image') 的值两端包含引号
Solution: 获取背景图片 URL 时用 `/url\([\s"']*(.*?)[\s"']*\)/` 进行匹配