html Sweet Alert 2图标无法正确呈现

xpszyzbs  于 2022-12-09  发布在  其他
关注(0)|答案(1)|浏览(898)

我正在尝试创建一个当网页加载时弹出的模态。模态按预期打开,但图标和动画不能正确渲染。我的代码片段来自网站SweetAlert2

<!-- import the sweet alert 2 package from cdn link -->
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>

<!-- sample from the sweet alert github website -->
<script>
  Swal.fire({
    icon: 'error',
    title: 'Oops...',
    text: 'Something went wrong!',
    footer: '<a href="">Why do I have this issue?</a>'
  })
</script>

当我运行代码时,生成的模态呈现一个错误图标,如下所示:

this问题开始,我尝试将icon属性更改为type,如下所示:

<!-- sample from the sweet alert github website with type instead of icon -->
<script>
  Swal.fire({
    type: 'error',
    title: 'Oops...',
    text: 'Something went wrong!',
    footer: '<a href="">Why do I have this issue?</a>'
  })
</script>

运行此代码的结果如下所示:

这段代码根本不渲染图标。我使用的是SweetAlert 2和macOS操作系统。我该如何修复这个错误?谢谢!

pprl5pva

pprl5pva1#

Span错误!因为您为span标记指定了通用字体大小,所以图标会损坏。如果您将其从css部分中删除,此问题将得到解决

相关问题