Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus nec iaculis mauris.
@bulmaio.
#css
#responsive
A set of modal window effects with CSS transitions and animations for Bulma. Very inspired by this Codrops resource/article: https://github.com/codrops/ModalWindowEffects
GitHub repo: https://github.com/postare/bulma-modal-fx
Include the plugin css file:
(optional) Include the plugin just before body closing tag:
Or use a CDN:
Class modifiers .modal
:
.modal-pos-top
: modal positioned on top.modal-pos-bottom
: modal positioned on bottom.modal-full-screen
: modal full screenClass modifiers .modal-content
:
.is-huge
: 100% width modal.is-tiny
: 400px width modal.is-image
: if the content is an imageExample:
Example full screen modal card:
Modal title
John Doe
@johndoe
<div id="modal-id" class="modal modal-fx-fadeInScale">
<div class="modal-background" style="background-image:url(img/moon.jpg)"></div>
<div class="modal-content">
<!-- Any other Bulma elements you want -->
</div>
<button class="modal-close is-large" aria-label="close"></button>
</div>