Foundation 提醒框

优质
小牛编辑
125浏览
2023-12-01

Foundation 可以很简单的创建一个提醒框:

提醒框的宽度为容器的 100%。

圆角提醒框

.radius.round 类用于为提醒框添加圆角:

实例

<div data-alert>
  <strong>Success!</strong> Alert box with a radius.
</div>

<div data-alert>
  <strong>Info!</strong> Alert box that is rounded.
</div>

关闭提醒框

要关闭提醒框,可以在连接或按钮元素上添加 class="close" 类,并初始化 Foundation JS:

实例

<div data-alert>
  This is a default alert box with closing functionality.
  <a href="#">&times;</a>
</div>

<script>
// Initialize Foundation JS For Functionality
$(document).ready(function() {
    $(document).foundation();
})
</script>

&times; (×) 是一个 HTML 字符实体表示一个关闭按钮的图标,而不是字母 "x"。