PHP Classes

File: assets/vendor/bootstrap-md/scss/addons/_hierarchical-display.scss

Recommend this page to a friend!
  Classes of akeel   F3A   assets/vendor/bootstrap-md/scss/addons/_hierarchical-display.scss   Download  
File: assets/vendor/bootstrap-md/scss/addons/_hierarchical-display.scss
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: F3A
PHP Web development framework like Laravel lite
Author: By
Last change:
Date: 2 years 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; }