1.0.4 • Published 7 years ago

smodal v1.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

smodal

index.js

import Smodal from "smodal";

var smodal = new Smodal({
    id: "modal",
    show: "showModal",
    hide: "hideModal"
});

index.html

<div id="modal">
  <div id="modalClose">
    <a id="hideModal">CLOSE</a>
  </div>
  <div id="modalTitle">
    タイトル
  </div>
  <div id="modalBody">
    本文
  </div>
</div>
<button id="showModal">OPEN</button>

<script src="./test.js"></script>

<style type="text/css">

@media only screen and (orientation:portrait) {
  #modal {
    width:100%;
    height:auto;
  }
}

@media only screen and (orientation:landscape) {
  #modal {
    width:90%;
    height:auto;
  }
}

#modal {
  display:none;
  margin:0;
  padding:0;
  background-color:#ffffff;
  color:#666666;
  position:fixed;
  z-index: 2;
}

#modalClose {
  text-align:right;
}
</style>
1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago