Imitate disabled style
This time I will bring you the style of imitating disabled, what are the precautions for imitating the disabled style, the following is a practical case, let's take a look.
Imitate disabledOuter layer plus cursor: not-allowedInner layer organization clickEvents pointer-events: none
<template> <li v-for="item in navLists" href="javascript:;" class="li i" :class="{ 'activeShow':item.active, 'disabled-li':!item.flag }"> <a href="javascript:;" :class="{disabled:!item.flag}" @click.stop="toolgeNav(item)"> <h2>{{item.title}}</h2> <span class="samll-en" :title="item.small">{{item.small}}</span> <span class="samll-en-bg">{{item.small}}</span> </a> </li></template><style scoped>.disabled { pointer-events: none; /cursor: not-allowed!important;/ } .disabled-li { /阻止事件/ cursor: not-allowed !important; }</style>
How to filter out false, null, 0, "", undefined, and NaN values in a js array
How to use CSS to solve the problem of too many fonts in table tr th and table tr td
How to set the 360 speed mode to open by default
The above is the detailed content of Imitate disabled style. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In macOS Sonoma, widgets don't have to be hidden off-screen or forgotten in the Notification Center panel like they did in previous versions of Apple's macOS. Instead, they can be placed directly on your Mac’s desktop – they’re also interactive. When not in use, macOS desktop widgets fade into the background in a monochrome style, reducing distractions and allowing you to focus on the task at hand in the active application or window. However, when you click on the desktop, they return to full color. If you prefer a drab look and want to retain that aspect of uniformity on your desktop, there's a way to make it permanent. The following steps demonstrate how it is done. Open the System Settings app

Usually, the main function of a robot is to complete some simple operating tasks. We hope that the robot can imitate people and make its capabilities as close as possible to human levels. Whether it is Xiaomi's CyberOne or Tesla's Optimus, people are mainly concerned about its number of mechanical joints, control algorithm and walking speed. However, in this field, some people are exploring more imaginative directions: Now, there is a robot that can imitate real human expressions to the extreme: try taking a selfie first. From "disgust" to "surprise", everything can be completely synchronized: This robot is called Ameca, and it is a weird expression. In addition to imitating, it can also make many small expressions when looking in the mirror, making it look very much like a real person. Ameca "pretends" to see the mirror for the first time,

Guide to solving misaligned WordPress web pages In WordPress website development, sometimes we encounter web page elements that are misaligned. This may be due to screen sizes on different devices, browser compatibility, or improper CSS style settings. To solve this misalignment, we need to carefully analyze the problem, find possible causes, and debug and repair it step by step. This article will share some common WordPress web page misalignment problems and corresponding solutions, and provide specific code examples to help develop

CSS web page background image design: Create various background image styles and effects, specific code examples are required Summary: In web design, background images are an important visual element, which can effectively enhance the attractiveness and readability of the page. This article will introduce some common CSS background image design styles and effects, and provide corresponding code examples. Readers can select and apply these background image styles and effects according to their own needs and preferences to achieve better visual effects and user experience. Keywords: CSS, background image, design style, effect, code representation

Use the :nth-last-child(2) pseudo-class selector to select the style of the penultimate child element. Specific code examples are required. In CSS, the pseudo-class selector is a very powerful tool that can be used to select the document tree. specific elements. One of them is the :nth-last-child(2) pseudo-class selector, which selects the second-to-last child element and applies styles to it. First, let's create a sample HTML document so that we can use this pseudo-class selector in it. by

CSS text effects: Adding various special effects and styles to text requires specific code examples 1. Introduction In web design, text is an indispensable part. By adding special effects and styles to the text, you can make the page more lively and interesting and improve the user's reading experience. This article will introduce some common CSS text effects and provide corresponding code examples for readers' reference and learning. 2. Text color Text color is one of the most basic text effects. By setting the color property, you can change the color of the text. Here is an example

CSS web navigation bar design: To create various navigation bar styles, specific code examples are required. The navigation bar is one of the most important components in web design. It not only facilitates users to browse different pages of the website, but also provides a clear guide to the website structure. . When designing a navigation bar, the problem we often face is how to create a navigation bar that is both beautiful and functional. This article will introduce some common CSS navigation bar design methods and give corresponding code examples to help readers better understand and apply them. Basic navigation bar Basic navigation bar is the most common

Using the :root pseudo-class selector to select the style of the root element of the document requires specific code examples. In CSS, we can use the :root pseudo-class selector to select the root element of the document and specify a specific style for it. The :root pseudo-class selector is equivalent to selecting html elements in most cases, but when a namespace exists in the document, the :root pseudo-class selector will select the root element of the default namespace. Here is a concrete code example that shows how to use the :root pseudo-class selector to select the root element of the document.
