Semantic-UI Reveal Disabled State Last Updated : 28 Feb, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report Semantic UI is an open-source framework that uses CSS and jQuery to build great user interfaces. It is the same as a bootstrap for use and has great different elements to use to make your website look more amazing. In this article, we are going to learn about Reveal Disabled State. It is equipped with pre-built semantic components that help create responsive layouts using user-friendly HTML, and it uses predefined CSS and jQuery to incorporate different frameworks. A reveal displays additional content in place of previous content when activated and it will not animate when hovered in a disabled state. Semantic-UI Reveal Disabled State Class: disabled: A disabled reveal will not animate when hovering over the image.Syntax: <div class="ui disabled move reveal"> ... </div>The below example illustrates the Semantic-UI Reveal Disabled State: Example 1: HTML <!DOCTYPE html> <html> <head> <link href= "https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" rel="stylesheet" /> </head> <body> <center> <h1 class="ui header green"> GeeksforGeeks </h1> <strong> Semantic-UI </strong> <h3 class="ui dividing header"> Reveal Disabled State </h3> </center> <!--disabled class is used--> <div class="ui disabled move reveal"> <div class="visible content"> <img src= "https://media.geeksforgeeks.org/wp-content/uploads/20220210074518/color11-300x169.png" class="ui small image"> </div> <div class="hidden content"> <img src= "https://media.geeksforgeeks.org/wp-content/uploads/20220210074537/color3.png" class="ui small image"> </div> </div> </body> </html> Output: Semantic-UI Reveal Disabled StateExample 2: HTML <!DOCTYPE html> <html> <head> <link href= "https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" rel="stylesheet" /> </head> <body> <center> <h1 class="ui header green">GeeksforGeeks</h1> <strong>Semantic-UI Reveal Disabled State</strong> </center> <!--disabled class is used--> <div class="ui disabled move reveal"> <div class="visible content"> <img src= "https://media.geeksforgeeks.org/wp-content/uploads/20220220200617/gfg.png" class="ui small image"> </div> <div class="hidden content"> <img src= "https://media.geeksforgeeks.org/wp-content/uploads/20220210074537/color3.png" class="ui small image"> </div> </div> </body> </html> Output: Semantic-UI Reveal Disabled StateReference: https://semantic-ui.com/elements/reveal.html#disabled Comment More infoAdvertise with us Next Article Semantic-UI Progress Disabled State K krishna_97 Follow Improve Article Tags : Web Technologies CSS Geeks Premier League Geeks-Premier-League-2022 Semantic-UI Semantic-UI Elements +1 More Similar Reads Semantic-UI Header Disabled States Semantic UI is an open-source framework that uses CSS and jQuery to build great user interfaces. It is the same as a bootstrap for use and has great different elements to use to make your website look more amazing. The best part about this framework is that it creates beautiful and responsive layout 2 min read Semantic-UI Segment Disabled State Semantic UI is an open-source framework that uses CSS and jQuery to build great user interfaces. It is the same as a bootstrap for use and has great different elements to use to make your website look more amazing. Semantic UI has a bunch of components for user interface design. One of them is the S 2 min read Semantic-UI Image Disabled State Semantic UI is an open-source framework that uses CSS and jQuery to build great user interfaces. It is the same as a bootstrap for use and has great different elements to use to make your website look more amazing. Semantic UI has a bunch of components for user interface design. One of them is âImag 2 min read Semantic-UI Progress Disabled State Semantic UI is an open-source framework that uses CSS and jQuery to build great user interfaces. It is the same as a bootstrap for use and has great different elements to use to make your website look more amazing. Semantic UI has a bunch of components for user interface design. One of them is the p 2 min read Semantic-UI Loader Disabled State Semantic UI is an open-source development framework that provides pre-defined classes to make our website look beautiful, amazing, and responsive. It is similar to Bootstrap which has predefined classes. It uses jQuery and CSS to create interactive interfaces. It can also be directly used via CDN li 2 min read Semantic-UI Icon Disabled State 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 t 2 min read Like