Подтвердить что ты не робот

Как изменить класс CSS-элементов и удалить все остальные классы при нажатии

Как обработать случай в AngularJS 2, где при щелчке элемента ему нужно изменить свой собственный стиль, а если другие элементы имеют этот стиль, им нужно удалить его - предпочтительно в одну функцию.

Аналогично Angular.js Как изменить класс класса css на клик и удалить все остальные, только в AngularJS 2, используя TypeScript.

Компонент

https://plnkr.co/edit/Q2BoU4sNnXdaJB5vrZ8h?p=preview

//our root app component
import { NgModule} from '@angular/core'
import {BrowserModule} from '@angular/platform-browser'
import {Component} from '@angular/core';

@Component({
  selector: 'my-app',
  providers: [],
  template: `
    <div>
      <div (click)="isClassVisible = !isClassVisible;" [ngClass]="{'my-class': isClassVisible }">
        > I'm a div that gets styled on click
      </div>
      <div (click)="isClassVisible = !isClassVisible;" [ngClass]="{'my-class': isClassVisible }">
        > I also want to be styled but only when Im clicked
      </div>
      <div (click)="isClassVisible = !isClassVisible;" [ngClass]="{'my-class': isClassVisible }">
        > When one of us gets clicked the we want to be the only one with the style all others go back to normal
      </div>
       <div (click)="isClassVisible = !isClassVisible;" [ngClass]="{'my-class': isClassVisible }">
        > I'm just here cause my creator likes even numbers
      </div>
    </div>
  `,
  styles: [
  `
  .my-class {
    background-color: yellow;
  }
  `
  ]
})
class App {
  isClassVisible: false;

  constructor() {
  }

}

@NgModule({
  imports: [ BrowserModule ],
  declarations: [ App ],
  bootstrap: [ App ]
})
export class AppModule {}
4b9b3361

Ответ 1

Самое простое решение вашей проблемы - назначить уникальный идентификатор каждому включенному элементу вместе с использованием другой переменной для хранения выбранного идентификатора. Логика включения класса my-class CSS теперь будет основана на выбранном идентификаторе.

Ваш новый HTML-шаблон:

<div (click)="toggleHighlight(1);" [ngClass]="{'my-class': highlightedDiv === 1}">
  > I'm a div that gets styled on click
</div>

Ваша функция toggleHighlight:

highlightedDiv: number;

toggleHighlight(newValue: number) {
  if (this.highlightedDiv === newValue) {
    this.highlightedDiv = 0;
  }
  else {
    this.highlightedDiv = newValue;
  }
}

Рабочий Plnk: https://plnkr.co/edit/fNoXWhUhMaUoeMihbGYd?p=preview

Ответ 2

У меня есть одно трудное решение этой проблемы:

<div (click)="onclick($event);" >
    > I'm a div that gets styled on click
  </div>

приложения:

class App {
constructor() {
}
onclick(event){
    var l = event.target.parentElement.getElementsByClassName("my-class");
    var count = l.length;
    for(var i=0;i<count;i++){
    l[i].className = "";
}
event.target.className = "my-class";
}
}

Plink: https://plnkr.co/edit/RHqL56GrTiV9olYE1Ars?p=preview

Ответ 3

Одним из решений, которое работало для меня при отображении активного меню, является использование имени переменной typescript в классе, как в

`class="{{ text1Class }}"`  

и назначьте имя класса в typescript.

`this.text1Class = "active";` 

или

`this.text1Class = "inactive";`

У вас должен быть другой класс стиля, подобный этому

`.inactive {
 background-color : gray;
 padding : 10px;
}
.active {
  background-color : green;
  padding : 10px;
}`

Назначьте имя класса внутри функции

`textOneClicked() : void {
this.text1Class = "active"; // set the active class
this.text2Class = this.text3Class = this.text4Class = "inactive"; // reset other classes

} `

Рабочий Plunker здесь

Ответ 4

Html code

<div [ngClass]="'first-div'">
    <h2 [ngClass]="'heading'">Log In</h2>
    <div [ngClass]="content">    
      <input type="text" placeholder="Enter User Name" name="username" id="username"#username class="in-cl">
        <i class="fa fa-user fa-edited" aria-hidden="true"></i>
      <input type="{{isPassword ? 'password':'text'}}" placeholder="Password" name="password" id="mypassword" #password class="in-cl">
        <i class="fa fa-lock fa-lock-edited" aria-hidden="true" id="lock-id" (click)="onclick()"></i>
      <button type="button" class="in-cl" (click)="credential(username.value,password.value)" >SIGN IN</button>

    </div>
    <div class="forgot">
      <a href="#">Forgot Password?</a>
    </div>  

</div>

код CSS

.first-div{
    width: 350px;
    border: 2px solid black;
    margin-left: auto;
    margin-right: auto;
    margin-top: 130px;
    border-radius: 5px;
    height: 400px;
    background-color: black;
    color: white;

}
.heading{
    color: white;
    text-align: center;
    font-weight: 500;
    /* background-color: white; */   
}
.in-cl{
    margin: 20px 20px 0px 20px;
    border: 2px solid white;
    border-radius: 15px;
    height: 40px;
    padding: 5px;
    width: 300px;
    outline: none;
    color: black;
    /* padding-right: 60px; */
}
::placeholder{
    color: black;
}
div button{
    background-color: #3aafa9;
    color:black;
    text-align: center;
    border: none;
}
.forgot{
    margin: 15px;
    text-align: center;
    font-weight: 550;
    color: white;
}

/* .image{
    position: absolute;
    left: 825px;
    top: 222px;
}
.lock-image{
    position: absolute;
    left: 825px;
    top: 282px;
} */
/* edited */
.fa-user:before{
    color: black;
}
.fa-lock:before{
    color: black;
} 
.fa-unlock:before{
    color: black;
}
.fa-edited{
    top: 228px;
    left: 770px;
    position: absolute;
    width: 28px;
}
.fa-lock-edited{
    top: 287px;
    left: 772px;
    position: absolute;
}
a{
    color: white;
}

ts code

import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';
import swal from 'sweetalert2';
@Component({
  selector: 'app-login',
  templateUrl: './login.component.html',
  styleUrls: ['./login.component.css']
})
export class LoginComponent{
  username:string="pavithra";
  password:string="8792415337abcd";
  p = document.getElementById('mypassword');

  constructor(private router:Router) {}
  credential(username:string,password:string){

    if(this.username==username && this.password==password ){
      this.router.navigate(['/home'])
      swal.fire({title:'Signed in successfully', confirmButtonColor:'#3aafa9', type:'success'})
    }
    else{
      this.router.navigate(['/login'])
      swal.fire({title:'Invalid Username or Password',type:'warning',position:'top-end'})

    }
  }
  isPassword = true;
  onclick(){
    let body = document.getElementById('lock-id')
    if (body.classList) { 
      body.classList.toggle("fa-unlock");
      this.isPassword = !(this.isPassword);
    } else {
      var classes = body.className.split(" ");
      console.log(classes)
      var i = classes.indexOf("fa-lock");

      if (i >= 0) 
        classes.splice(i, 1);
      else 
        classes.push("fa-unlock");
        body.className = classes.join(" "); 
    }


  }




}