随笔分类 -  移动端

解决IOS iframe不滚动问题
摘要:.frameBox{ position: fixed; top: 0; left: 0; right: 0; bottom: 0; -webkit-overflow-scrolling: touch; overflow-y: scroll; } iframe { width: 100%; height: 100%; ... 阅读全文
posted @ 2017-05-02 13:13 前端小透明 阅读(2610) 评论(0) 推荐(0)
android studio 环境变量配置
摘要:1.需要添加path环境变量; 2.真机调试或模拟器调试需要启动adb adb kill-severadb -start-server可能有端口冲突--重启或者修改端口 创建密匙http://blog.csdn.net/sunylat/article/details/9239595 阅读全文
posted @ 2017-04-25 14:03 前端小透明 阅读(758) 评论(0) 推荐(0)
破解iframe微信推文(图片)防盗链
摘要:$.ajaxPrefilter(function(options) { if(options.crossDomain && jQuery.support.cors) { var http = (window.location.protocol === 'http:' ? 'http:' : 'https:'); options.url = http + '//cors-anywher... 阅读全文
posted @ 2017-04-25 13:56 前端小透明 阅读(3941) 评论(3) 推荐(1)