小编Sam*_*ier的帖子

如何在 Windows 10 上正确关闭 Firebase 模拟器

当。。。的时候firebase emulator:start在我的 vscode powershell 终端中运行时,一些 java.exe 窗口会弹出。一切都很好。

当我使用 ctrl+c 命令关闭 firebase 模拟器时,终端中的日志表明一切都应该正常关闭。这是之后的日志^C

i  emulators: Received SIGINT (Ctrl-C) for the first time. Starting a clean shutdown.
i  emulators: Please wait for a clean shutdown or send the SIGINT (Ctrl-C) signal again to stop right now.
i  Automatically exporting data using --export-on-exit "./data" please wait for the export to finish...
Terminate batch job (Y/N)? i  Found running emulator hub for project une-petite-partie at http://localhost:4400
i  Deleting directory C:\Users\schar\Documents\Programming\Projects\Card …
Run Code Online (Sandbox Code Playgroud)

firebase firebase-tools

8
推荐指数
1
解决办法
3680
查看次数

背景中心与变换3D和过滤器模糊在Firefox上

inb4:抱歉,超长的图片需要超长时间才能加载,如果您不想等待,请点击链接并阅读问题!

所以我正在创建一个网站的原型,我用它制作了一个虚假的3D效果,用鼠标移动了2d图像.当用户点击其中一个三角形以突出显示时,我想使用滤镜模糊.

我的问题是,当我添加模糊时,它在firefox中完全中断.我对chrome中的模糊没有任何问题,但由于某些原因在firefox中,应该居中的背景图像变为右对齐并由其自己的div裁剪,如果我在检查器中更改了背景位置,它会移出障碍区域.

这是Chrome的屏幕截图,然后是我在firefox中获得的内容.

Chrome没问题 firefox中的奇怪bug

在放弃整个模糊想法的同时,我并不完全不知道该做什么.任何解决方案的想法都是相关的

css firefox background-position css-transforms css-filters

7
推荐指数
1
解决办法
253
查看次数

如何用图像替换提交按钮?

我制作了这个简单的搜索框,并想使用 svg 图像作为提交按钮,如果没有任何 javascript,我该如何做到这一点?

这是表格:

    <form method="post" action="#">
        <input type="text" name="rechercher" id="rechercher" placeholder="Rechercher"/>
        <input type="submit" value="none" onerror="this.onerror=null; this.src='images/loupe.png'"/>
    </form>
Run Code Online (Sandbox Code Playgroud)

html css forms submit

2
推荐指数
1
解决办法
9843
查看次数

配置 Firebase 函数时出错 - 无法配置触发器

我收到此错误,但找不到原因

错误:

Failed to configure trigger providers/cloud.firestore/eventTypes/document.create@firestore.googleapis.com
Run Code Online (Sandbox Code Playgroud)

功能:

const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp();

exports.newSubmit = functions.firestore
    .document('usersSubmit/{id}')
    .onCreate(() => {
        console.log('new document created');
    });
Run Code Online (Sandbox Code Playgroud)

集合 usersSubmit 确实作为根集合存在。是我的功能问题还是云功能遇到了困难?

firebase google-cloud-functions google-cloud-firestore

2
推荐指数
1
解决办法
743
查看次数

如何在 Svelte 中强制内联 html 属性

我想使用浏览器的本机支持来使用元素将表单的所有字段值重置为其默认或初始状态<input type"reset">

在 HTML 中

在本机 HTML 中,单击重置输入将删除所有用户输入,并将字段重置为值内联参数设置的值:value='default value',如果它为空或丢失,它将重置为空字段。

input{
  display:block;
  margin:10px;
}
Run Code Online (Sandbox Code Playgroud)
<form>
  <input type="text" value="default value">
  <input type="text" value="">
  <input type="text">
  <input type="reset">
  
</form>
Run Code Online (Sandbox Code Playgroud)

苗条的

在 Svelte 中,value 属性似乎永远不会打印在 html 中。因此,单击重置输入将清空所有字段,而不是将它们重置为初始值。这是 Svelte REPL 中的示例

那么有没有一种方法可以强制本机行为而不用 javascript 处理它呢?有没有办法强制 svelte 打印内联属性并且从不更新它?

html forms input reset svelte

2
推荐指数
1
解决办法
1205
查看次数