Open In App

Semantic-UI Icon Disabled State

Last Updated : 12 Feb, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Semantic UI is a modern framework used in developing seamless designs for the website, It gives the user a lightweight experience with its components. It uses predefined CSS and jQuery to incorporate different frameworks.

A Semantic UI Icon is a glyph used to represent something. Icons can be used to display special messages such as like button, danger, etc. The icons are general in meaning and hence widely used. The Semantic UI Icon Disabled state demonstrates that any option or link with which the Icon is linked is disabled. It fades the color of the icon.

Semantic-UI Icon Disabled State classes:

  • disabled: This class is used to make the icon disabled here.

Syntax:

<i class="... icon disabled">
</i>

The below example illustrates the Semantic-UI Statistics Variations Floated Variant:

Example: In the following example, we are toggling the class of code icon using the button element using the disabled class.

HTML




<!DOCTYPE html>
<html>
  
<head>
    <link rel="stylesheet" 
          href=
    <script src=
    </script>
    <script src=
    </script>
</head>
  
<body>
    <div class="ui container">
        <center>
            <h1 style="color: green;">
              GeeksforGeeks
            </h1>
            <h2>Semantic-UI Icon Disabled State</h2>
              
            <h4>Code</h4>
            <i class="code huge circular icon" 
               id="codeIcon"></i>
              
            <div>
                <button class="ui button" 
                        onclick="toggleDisable()">
                  Enable/Disable Code Icon
                </button>
            </div>
        </center>
    </div>
    <script>
        function toggleDisable(){
            $("#codeIcon").toggleClass("disabled");
        }
    </script>
</body>
  
</html>


Output:

Semantic-UI Icon Disabled State

Semantic-UI Icon Disabled State

Reference: https://semantic-ui.com/elements/icon.html#disabled



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads