Cufon 和 Jquery Magic 预览
Jquery Magic 预览允许用户输入文本并自动更新(很像这个“提交字段”与下面的预览加载一起使用!)。我希望用户能够输入文本,然后使用 Cufon 字体来接管他们所写的内容(或者只是以 cufon 字体输入)。
$(function() {
$('form.example input:text').magicpreview('mp_');
});
Cufon.replace('p#mp_trythis1');
Jquery Magic preview allows a user to enter in text and have it auto update (much like this "submission field" works with the preview loading below!). I would like the user to be able to enter in the text and then the Cufon font to take over what they've written (or just have it typed in cufon font).
$(function() {
$('form.example input:text').magicpreview('mp_');
});
Cufon.replace('p#mp_trythis1');
An example here: http://twmorton.com/magicpreviewjquery/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,我需要的一个更好的例子是预览字体,就像在这个网站上一样:
http:// /www.fontspace.com/mario-arturo/sahara
当您输入所需内容时,运行预览的任何脚本都会刷新预览以显示您输入的内容。
Alright, a better example of what I need would be previewing a font, like at this website:
http://www.fontspace.com/mario-arturo/sahara
When you type in what you need, whatever script running the preview refreshes the preview to show you what you've typed.
这是一个简化版本(没有 magicpreview):
html 部分:
javascript 部分:
参见实时示例 此处
编辑:您可以在此处看到作为 jQuery 插件实现的两个替代版本。
Here is a simplified version (without magicpreview):
The html part:
The javascript part:
See live example here
EDIT: you can see two alternative versions here implemented as jQuery plugins.