用于移动 Web 应用程序的 HTML 和 CSS 锁屏
我正在使用 jquery mobile、backbone、underscore 和 tbd 模板引擎构建一个单页、离线 html5 Web 应用程序。
我想创建一个看起来与原生 iPhone 锁屏类似的锁屏。在我重新发明轮子之前,有人见过这样的事情吗?我还没有找到这方面的例子。
谢谢!
I'm building a single page, offline html5 web application using jquery mobile, backbone, underscore and tbd templating engine.
I'd like to create a lockscreen that looks similar to the native iPhone lockscreen. Before I go reinvent the wheel has anyone seen anything like this before? I haven't been able to find an example of this.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑:哦不,这是一个老问题了!
将固定位置的隐藏
div
添加到您的页面。当您需要激活锁定屏幕时,使用 jQuery 以编程方式显示它:CSS
jQuery
Edit: Oh no, it's an old question!
Add a fixed-position, hidden
div
to your page. When you need to activate the lock screen, use jQuery to programmatically show it:CSS
jQuery
嗯,现在已经被挖出来了,所以我不妨补充一下。在文本字段上使用
来获取数字输入。不完全相同,但比使用完整键盘更容易,也比自己编写整个键盘更容易。
Well it's been dredged up now, so I might aswell add this. Use
<input type="text" pattern="[0-9]*" />
on a text field to get a numeric input. Not quite the same, but easier than using a full keyboard, and easier than coding the whole keypad yourself.