PHP Classes

File: public/mdb/scss/addons/_hierarchical-display.scss

Recommend this page to a friend!
  Classes of Ahmad Mustapha   PHP Todo List   public/mdb/scss/addons/_hierarchical-display.scss   Download  
File: public/mdb/scss/addons/_hierarchical-display.scss
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Todo List
Application to manage a list of tasks to do
Author: By
Last change:
Date: 1 year ago
Size: 638 bytes
 

Contents

Class file image Download
.zmd-hierarchical-display { visibility: hidden; &.in { visibility: visible; } } .zmd-hierarchical-displaying { visibility: visible; } .animation { animation-duration: 1s; animation-fill-mode: both; } .animation.zoomedIn, .animation.zoomedOut { animation-timing-function: cubic-bezier(.55, 0, .1, 1); // "Swift Out" easing curve } @keyframes zoomedIn { from { transform: scale(0); } to { transform: scale(1); } } @keyframes zoomedOut { from { transform: scale(1); } to { transform: scale(0); } } .zoomedIn { animation-name: zoomedIn; } .zoomedOut { animation-name: zoomedOut; }