Semantic UI es un marco de código abierto que utiliza CSS y jQuery para crear excelentes interfaces de usuario. Es lo mismo que un bootstrap para usar y tiene grandes elementos diferentes para usar para hacer que su sitio web se vea más increíble. Utiliza una clase para agregar CSS a los elementos.
Las tablas son una manera fácil de organizar una gran cantidad de datos. Una tabla es una disposición de datos en filas y columnas, o posiblemente en una estructura más compleja. Las tablas se utilizan ampliamente en la comunicación, la investigación y el análisis de datos. Las tablas son útiles para diversas tareas, como presentar información de texto y datos numéricos. Se puede utilizar para comparar dos o más elementos en el diseño de formulario tabular. Las tablas se utilizan para crear bases de datos. Una tabla HTML y una tabla de interfaz de usuario semántica tienen la misma estructura.
La variación clasificable de las tablas de IU semánticas permite a un usuario ordenar los contenidos haciendo clic en el encabezado de una tabla.
Clase de variación clasificable de tabla de IU semántica:
- sortable: esta clase permite ordenar los contenidos haciendo clic en el encabezado de una tabla.
Sintaxis:
<table class="ui sortable table"> <tr> <td></td> ... </tr> ... </table>
Ejemplo 1: este es un ejemplo básico que ilustra la variación ordenable de la tabla creada con la interfaz de usuario semántica.
HTML
<!DOCTYPE html> <html> <head> <title>Semantic UI Table Sortable Variation</title> <link href= "https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" rel="stylesheet" /> <script src= "https://code.jquery.com/jquery-3.1.1.min.js" crossorigin="anonymous"> </script> <script src= "https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js"> </script> <script src= "https://semantic-ui.com/javascript/library/tablesort.js"> </script> </head> <body> <center> <h1 class="ui green header">GeeksforGeeks</h1> <strong>Semantic UI Table Sortable Variation</strong> </center> <table class="ui sortable table"> <thead> <tr> <th>Names</th> <th>Maths Marks</th> <th>Physics Marks</th> <th>Chemistry Marks</th> <th>Computer Marks</th> </tr> </thead> <tbody> <tr> <td>Ravi</td> <td>48</td> <td>84</td> <td>63</td> <td>77</td> </tr> <tr> <td>Srihita</td> <td>55</td> <td>97</td> <td>74</td> <td>49</td> </tr> <tr> <td>Naveen</td> <td>85</td> <td>85</td> <td>41</td> <td>67</td> </tr> <tr> <td>Tomar</td> <td>85</td> <td>31</td> <td>45</td> <td>44</td> </tr> </tbody> </table> <script> $('.sortable.table').tablesort(); </script> </body> </html>
Producción:
Ejemplo 2: este es un ejemplo básico que ilustra una variación clasificable de tabla rayada colapsada creada con la interfaz de usuario semántica.
HTML
<!DOCTYPE html> <html> <head> <title>Semantic UI Table Sortable Variation</title> <link href= "https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" rel="stylesheet" /> <script src= "https://code.jquery.com/jquery-3.1.1.min.js" crossorigin="anonymous"> </script> <script src= "https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js"> </script> <script src= "https://semantic-ui.com/javascript/library/tablesort.js"> </script> </head> <body> <center> <h1 class="ui green header">GeeksforGeeks</h1> <strong>Semantic UI Table Sortable Variation</strong> </center> <table class="ui sortable celled table"> <thead> <tr> <th>Names</th> <th>Maths Marks</th> <th>Physics Marks</th> <th>Chemistry Marks</th> <th>Computer Marks</th> </tr> </thead> <tbody> <tr> <td>Ravi</td> <td>48</td> <td>84</td> <td>63</td> <td>77</td> </tr> <tr> <td>Srihita</td> <td>55</td> <td>97</td> <td>74</td> <td>49</td> </tr> <tr> <td>Naveen</td> <td>85</td> <td>85</td> <td>41</td> <td>67</td> </tr> <tr> <td>Tomar</td> <td>85</td> <td>31</td> <td>45</td> <td>44</td> </tr> </tbody> </table> <script> $('.sortable.table').tablesort(); </script> </body> </html>
Producción:
Referencia: https://semantic-ui.com/collections/table.html#sortable
Publicación traducida automáticamente
Artículo escrito por tpraneeth2001 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA