Formatting: Message


About

Formatting Message is a quick HTML code format that can be used to create several types of messages. The currently available message types are general, warn, info, error, and success - (Demo).



Specification




Configuration



Description

type
This configuration determines the message skin.

general Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.

info Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.

warn Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.

error Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.

success Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.

shadow
Shadow.

yes Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.

no Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.



Usage

  1. Define an HTML Tag DIV with the w-message class.

            
    <div class='w-message'>
      My message
    </div> 
            
            
    My message

    Note: In the HTML above, no configurations have been added. All configurations will set to default.

  2. Add the desired configuration by adding the attribute
    data-configuration-name='Value'.


            
    <div class='w-message' data-type='success' data-shadow='yes'>
      My message
    </div>
            
            
    My message
Have Question?