CSSだけで、画像の上にタイトルとキャプションを表示するhoverエフェクトです。画像にhoverすると、一瞬、四隅から白いボーダーが走り、画像をオーバーレイして、白い文字でタイトルとキャプションを表示します。hoverを外すと、逆の動きで元に戻ります。なお、hoverを外したときのみ、JavaScriptでhover状態のclassをremoveしています。

サンプルのhtmlソース

&<figure class="modal">
  <img src="../img5/400x300-7.png" alt=""/>
  <figcaption>
    <h3>百万石 WEB受注システム</h3>
    <p>「経費節減+顧客満足度UP」を図るなら、WEB受注をお勧めします!!既存システムの変更不要で即行稼動します!! </p>
  </figcaption>
  <a href="#"></a>
</figure>
<figure class="modal">
  <img src="../img5/400x300-6.png" alt=""/>
  <figcaption>
    <h3>0万石 在庫照会システム</h3>
    <p>会社の在庫状態が、無料で照会できるサービスです。件数は無制限で登録可能(登録数に関係なく 無料)。</p>
  </figcaption>
  <a href="#"></a>
</figure>
<figure class="modal">
  <img src="../img5/400x300-9.png" alt=""/>
  <figcaption>
    <h3>定期配達 回収品管理システム</h3>
    <p>定期的に得意先へ配達・回収を行なっている企業様の「受注業務のWEB化」と、ドライバーへ「配達指示・回収数報告を効率的に管理」するシステムです。    </p>
  </figcaption>
  <a href="#"></a>
</figure>

サンプルのCSSソース

.modal {
  position: relative;
  float: left;
  margin: 10px 1%;
  min-width: 300px -60px;
  max-width: 300px;
  width: 100%;
  color: #ffffff;
  text-align: left;
  background-color: #000000;
  font-size: 15px;
}
.modal * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.modal img {
  position: relative;
  max-width: 100%;
  vertical-align: top;
}
.modal figcaption {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  padding: 20px 30px;
}
.modal figcaption:before,
.modal figcaption:after {
  width: 1px;
  height: 0;
}
.modal figcaption:before {
  right: 0;
  top: 0;
}
.modal figcaption:after {
  left: 0;
  bottom: 0;
}
.modal h3,
.modal p {
  line-height: 1.5em;
}
.modal h3 {
  margin: 0 0 4px;
  font-weight: 700;
  text-transform: uppercase;
}
.modal p {
  font-size: 0.8em;
  font-weight: 500;
  margin: 0 0 15px;
}
.modal a {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
}
.modal:before,
.modal:after,
.modal figcaption:before,
.modal figcaption:after {
  position: absolute;
  content: '';
  background-color: #ffffff;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  opacity: 0.8;
}
.modal:before,
.modal:after {
  height: 1px;
  width: 0%;
}
.modal:before {
  top: 0;
  left: 0;
}
.modal:after {
  bottom: 0;
  right: 0;
}
.modal:hover img,
.modal.hover img {
  opacity: 0.4;
}
.modal:hover figcaption,
.modal.hover figcaption {
  opacity: 1;
}
.modal:hover figcaption:before,
.modal.hover figcaption:before,
.modal:hover figcaption:after,
.modal.hover figcaption:after {
  height: 100%;
}
.modal:hover:before,
.modal.hover:before,
.modal:hover:after,
.modal.hover:after {
  width: 100%;
}
.modal:hover:before,
.modal.hover:before,
.modal:hover:after,
.modal.hover:after,
.modal:hover figcaption:before,
.modal.hover figcaption:before,
.modal:hover figcaption:after,
.modal.hover figcaption:after {
  opacity: 0.1;
}

 

 

引用と参考;https://codepen.io/littlesnippets/pen/LGpgGJ
戻るボタン