有没有一个 firefox 插件提供类似 jsFiddle 的功能
我今天刚看到 jsFiddle,想知道是否有一个 FireFox 插件提供类似 jsFiddle 的功能。特别是当您输入 html 和 css 时,jsFiddle 会向您显示页面的布局。是否有任何插件可以显示“离线查看”的这种布局?我使用 Firebug 但没有这样的布局。有人知道吗?
I just saw jsFiddle today and am wondering that is there a FireFox addon that provides jsFiddle like features. Especially when you enter the html and css, jsFiddle shows you a layout of the page. Is there any addon that shows such layout for "offline viewing"? I use Firebug but there isn't such layout. Does somebody know about it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不是 Firefox 插件,只是为了自我推销:
我创建了一个具有类似(但目前非常有限)功能的 Vim 脚本: vimfiddler. Vim 与 selenium 集成来驱动浏览器。提供在您自己的计算机上本地运行的 jsfiddlerish 体验。
Not a firefox add-on, only in the interest of self-promotion:
I have created a Vim script with similar (but at the moment very limited) functionality: vimfiddler. Vim integrates with selenium to drive a browser. Provides a jsfiddlerish experience running locally on your own computer.
在 Google Chrome 中,您可以编辑页面的每个元素。只需打开一个新选项卡,按
F-12
并根据您的意愿进行编辑。在head
标签中添加一些 css 或 javascript,在body
中添加您想要的任何 HTML,然后就可以开始了。In Google Chrome you can edit every element of the page. Just open a new tab, hit
F-12
and edit to your heart's desire. Add some css or javascript to thehead
tags, put whatever HTML you want in thebody
, and you're good to go.这个附加组件听起来像是您所需要的: https: //addons.mozilla.org/en-us/firefox/addon/devtools-prototyper/?src=ss
只需安装它,打开 devtools,然后切换到“原型”选项卡。
This add-on sounds like what you need : https://addons.mozilla.org/en-us/firefox/addon/devtools-prototyper/?src=ss
Just install it, open the devtools, then switch to the "Prototyper" tab.