파운데이션 알림 상자


  번역 결과:

Foundation은 반응형 HTML, CSS 및 JavaScript 프레임워크를 개발하는 데 사용됩니다.

Foundation은 모든 장치에서 웹 애플리케이션을 구축하기 위한 사용하기 쉽고 강력하며 유연한 프레임워크입니다.

Foundation은 인기 있는 모바일 우선 프레임워크입니다.

파운데이션 알림 상자통사론

참고: 알림 상자는 .alert-box 클래스를 사용하여 생성할 수 있으며 선택적 클래스를 추가할 수 있습니다: .secondary, .success, .info, .warning 또는 .alert

파운데이션 알림 상자예

<!DOCTYPE html>
<html>
<head>
  <title>Foundation 实例</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://cdn.bootcss.com/foundation/5.5.3/css/foundation.min.css">
  <script src="https://cdn.bootcss.com/jquery/2.1.1/jquery.min.js"></script>
  <script src="https://cdn.bootcss.com/foundation/5.5.3/js/foundation.min.js"></script>
  <script src="https://cdn.bootcss.com/foundation/5.5.3/js/vendor/modernizr.js"></script>
</head>
<body>

<div style="padding:20px;">
  <h2>提醒框</h2>
  <div data-alert class="alert-box">
    This is a default alert box.
  </div>

  <div data-alert class="alert-box secondary">
    This is a secondary alert box.
  </div>

  <div data-alert class="alert-box success">
    <strong>Success!</strong> This alert box indicates a successful or positive action.
  </div>

  <div data-alert class="alert-box info">
      <strong>Info!</strong> This alert box indicates a neutral informative change or action.
  </div>

  <div data-alert class="alert-box warning">
      <strong>Warning!</strong> This alert box indicates a warning that might need attention.
  </div>

  <div data-alert class="alert-box alert">
      <strong>Alert!</strong> This alert box indicates a dangerous or potentially negative action.
  </div>
</div>

</body>
</html>

인스턴스 실행 »

온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요

인기 추천

비디오

Q&A