简体   繁体   中英

how to change hover to onclick in angular?

i am using css where mouse hover flip flop feature is working but i want this on click to how to achieve this.

 <div class="card-flip-front"> <div class="panel panel-default"> <div class="w3-container"> <div style="margin-left: -15px"> </div> </div> </div> </div> </div> </div> 

On a rough way, Is this what you are looking for?

Link to flip flop

Handled click and toggled between the required classes.

$scope.flipClasses = function() {
    //$scope.todos.push({text:$scope.todoText, done:false});
    if($scope.cardFlipFrontClass == 'card-flip-front flipped'){
    $scope.cardFlipFrontClass =  'card-flip-front';
    }
   else

    $scope.cardFlipFrontClass =  'card-flip-front flipped';

  };

I hope this should give you a basic idea on how to fit classes to suit your situation

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM