Interfaz de usuario semántica | Envase

El marco de código abierto de la interfaz de usuario semántica proporciona un contenedor que ayuda a limitar el contenido al ancho máximo. El marco utiliza jQuery y CSS para crear interfaces de usuario interactivas. Es muy similar al uso de arranque y tiene diferentes elementos para crear la estructura de página de cualquier sitio web.

Ejemplo: El siguiente ejemplo muestra el contenedor estándar.

<!DOCTYPE html>
<html>
  
<head>
    <title>Semantic UI</title>
    <link href=
"https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" 
    rel="stylesheet" />
</head>
  
<body>
    <div style="margin-top: 100px" 
        class="ui container">
          
        <h2>Container</h2>
        <div class="ui container">
            <p>
                Semantic UI is an open-source 
                framework that uses CSS and 
                jQuery to build great user 
                interfaces. It is same as a 
                bootstrap for use and has 
                great different elements to
                use to make your website look
                more amazing. It uses a class
                to add CSS to the elements.
            </p>
        </div>
    </div>
      
    <script src=
"https://code.jquery.com/jquery-3.1.1.min.js"
        integrity=
"sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" 
        crossorigin="anonymous">
    </script>
      
    <script src=
"https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js">
    </script>
</body>
  
</html>

Producción:

Ejemplo: El siguiente ejemplo muestra un contenedor de texto.

<!DOCTYPE html>
<html>
  
<head>
    <title>Semantic UI</title>
    <link href=
"https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css"
        rel="stylesheet" />
</head>
  
<body>
    <div style="margin-top: 100px" 
        class="ui container">
          
        <h2>Text Container</h2>
        <div class="ui text container">
            <p>
                Semantic UI is an open-source 
                framework that uses CSS and 
                jQuery to build great user 
                interfaces. It is same as a 
                bootstrap for use and has 
                great different elements to 
                use to make your website look
                more amazing. It uses a class 
                to add CSS to the elements.
            </p>
        </div>
    </div>
  
    <script src=
"https://code.jquery.com/jquery-3.1.1.min.js"
        integrity=
"sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
        crossorigin="anonymous">
    </script>
      
    <script src=
"https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js">
    </script>
</body>
  
</html>

Producción:

Ejemplo: El siguiente ejemplo muestra el tipo de fluido de contenedor.

<!DOCTYPE html>
<html>
  
<head>
    <title>Semantic UI</title>
    <link href=
"https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css"
        rel="stylesheet" />
</head>
  
<body>
    <div style="margin-top: 100px" 
        class="ui container">
          
        <h2>Fluid Container</h2>
    </div>
  
    <div class="ui fluid container">
        <p>
            Semantic UI is an open-source 
            framework that uses CSS and 
            jQuery to build great user 
            interfaces. It is same as a 
            bootstrap for use and has 
            great different elements to 
            use to make your website look 
            more amazing. It uses a class 
            to add CSS to the elements.
        </p>
    </div>
  
    <script src=
"https://code.jquery.com/jquery-3.1.1.min.js"
        integrity=
"sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
        crossorigin="anonymous">
    </script>
      
    <script src=
"https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js">
    </script>
</body>
  
</html>

Producción:

Ejemplo: El siguiente ejemplo muestra un contenedor alineado.

<!DOCTYPE html>
<html>
  
<head>
    <title>Semantic UI</title>
    <link href=
"https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css"
        rel="stylesheet" />
</head>
  
<body>
    <div style="margin-top: 100px" 
        class="ui container">
        <h2>Container</h2>
    </div>
  
    <div class="ui left aligned container">
        <h3>Left Aligned</h3>
        <p>
            Semantic UI is an open-source framework 
            that uses CSS and jQuery to build great
            user interfaces. It is same as a bootstrap
            for use and has great different elements 
            to use to make your website look more 
            amazing. It uses a class to add CSS
            to the elements.
        </p>
    </div>
    <br>
    <div class="ui center aligned container">
        <h3>Center Aligned</h3>
        <p>
            Semantic UI is an open-source framework 
            that uses CSS and jQuery to build great
            user interfaces. It is same as a bootstrap
            for use and has great different elements 
            to use to make your website look more 
            amazing. It uses a class to add CSS
            to the elements.
        </p>
    </div>
    <br>
    <div class="ui right aligned container">
        <h3>Right Aligned</h3>
        <p>
            Semantic UI is an open-source framework 
            that uses CSS and jQuery to build great
            user interfaces. It is same as a bootstrap
            for use and has great different elements 
            to use to make your website look more 
            amazing. It uses a class to add CSS
            to the elements.
        </p>
    </div>
    <br>
    <div class="ui justified container">
        <h3>Justified</h3>
        <p>
            Semantic UI is an open-source framework 
            that uses CSS and jQuery to build great
            user interfaces. It is same as a bootstrap
            for use and has great different elements 
            to use to make your website look more 
            amazing. It uses a class to add CSS
            to the elements.
        </p>
    </div>
    <script src=
"https://code.jquery.com/jquery-3.1.1.min.js"
        integrity=
"sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
        crossorigin="anonymous">
    </script>
      
    <script src=
"https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js">
    </script>
</body>
  
</html>

Producción:

Publicación traducida automáticamente

Artículo escrito por iamsahil1910 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *