Javascript MDBootstrap Interacciones Utilidades

MDBootstrap es una biblioteca de interfaz de usuario Javascript basada en diseño de materiales y bootstrap que se utiliza para crear páginas web atractivas con su componente sencillo y fácil de usar. Es gratis para uso personal y comercial. En este artículo, sabremos cómo usar Interactions Utilities en Javascript MDBootstap.

MDBootstrap Interactions Utilities permite a un usuario interactuar con los contenidos de un sitio web.

MDBootstrap Javascript Interactions Utility Clases:

  • user-select-all : permite seleccionar el párrafo completo cuando el usuario hace clic en él.
  • user-select-auto : Es un selector de párrafo predeterminado.
  • user-select-none : No permite o está deshabilitado para seleccionar el párrafo cuando el usuario hace clic.

Sintaxis:

<h2 class="user-select-all">GeeksforGeeks</h2>

Acercarse:

  • Descarga Javascript MDBootstrap desde el sitio oficial .
  • Extraiga los archivos al directorio de trabajo actual.
  • En el archivo Index.html, especifique la ruta del archivo descargado en la etiqueta <head>.

<enlace rel=”icono” href=”img/mdb-favicon.ico” type=”image/x-icon” />
<enlace rel=”hoja de estilo” href=”https://use.fontawesome.com/releases /v5.15.2/css/all.css” />
<enlace rel=”hoja de estilo” href=”https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display =intercambiar”/>
<enlace rel=”hoja de estilo” href=”css/mdb.min.css” />
<script type=”text/javascript”></script>

Ejemplo 1: Este ejemplo ilustra las utilidades de interacciones Javascript de MDBootstrap donde la clase específica decide la interactividad.

HTML

<!DOCTYPE html >
<html lang="en">
  
<head>
    <title>Javascript MDBootstrap Interactions Utilities</title>
    <meta charset="UTF-8" />
    <meta name="viewport" 
          content="width=device-width, 
                   initial-scale=1, 
                   shrink-to-fit=no" />
    <link rel="icon" 
          href="img/mdb-favicon.ico" 
          type="image/x-icon" />
    <link rel="stylesheet"
          href=
"https://use.fontawesome.com/releases/v5.15.2/css/all.css" />
    <link rel="stylesheet"
          href=
"https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" />
    <link rel="stylesheet"
          href="css/mdb.min.css" />
    <script type="text/javascript" 
            src="js/mdb.min.js">
    </script>
</head>
  
<body>
    <div style="margin-left: 50px;">
        <h2 style="margin-top: 50px;">
            GeeksforGeeks
        </h2>
        <h4>
            MDBootstrap Javascript Interactions Utilities
        </h4>
        <br>
        <p class='user-select-all'>
              
            MDBootstrap is a Material Design and 
            bootstrap-based Javascript UI library
            that is used to make good looking webpages
            with its seamless and easy-to-use component.
        </p>
  
        <p class='user-select-auto'>
              
            MDBootstrap is a Material Design and 
            bootstrap-based Javascript UI library
            that is used to make good looking webpages 
            with its seamless and easy-to-use component.
        </p>
  
        <p class='user-select-none'>
              
            MDBootstrap is a Material Design and 
            bootstrap-based Javascript UI library
            that is used to make good looking webpages 
            with its seamless and easy-to-use component.
        </p>
  
    </div>
</body>
  
</html>

Producción:

Javascript MDBootstrap Interactions Utilities

Javascript MDBootstrap Interacciones Utilidades

Referencia: https://mdbootstrap.com/docs/standard/utilities/interactions/

Publicación traducida automáticamente

Artículo escrito por taran910 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 *