Semantic-Org / Semantic-UI

Semantic is a UI component framework based around useful principles from natural language.
http://www.semantic-ui.com
MIT License
51.11k stars 4.94k forks source link

Semantic UI Flash feature. #3153

Closed nsantiago2719 closed 9 years ago

nsantiago2719 commented 9 years ago

Do you guys have a plan on adding a notification like notify.js in Semantic UI? I have tried to make one like notifyjs. The code for it is this.

.ui.flash
  {
    background-color: rgba(0, 137, 71, 0.8);
    color:white;
    top:55px;
    right: 35px;
    font-size:13px;
    padding:20px 10px 20px 10px;
    position:absolute;
    height: auto;
    width: 20%;
    text-align: justify;
    z-index: 999;
  }
$('.ui.button').on('click', function(){
  $('.ui.flash').hide().delay(800).fadeIn(800).delay(5000).fadeOut(300);
});
koddr commented 9 years ago

+1

jlukic commented 9 years ago

There's already a thread requesting this.