這篇程式是 2016/6/6(一) 我從 CodePen 翻抄寫過來的,https://codepen.io/wuk/pen/oLjjxO 附上網址及部份說明.... 很簡單,但有空還是要多練練基本功。
裡面用到了 font-awesome.min.css 所以記得要在 CodePen 實作要記得在 Setting 中加入
HTML:
<div class="content">
<i class="fa fa-plane fa-5x tt"></i> // fa-bug fa-plane 就是 font-awesome 所提供
<i class="fa fa-bug fa-5x tt"></i>
<i class="fa fa-phone fa-5x tt"></i>
</div>
SCSS:
@minxin center{ // scss 繼承 Center
...
}
@keyframes expand // 實作動態顯示函數
{
from{ transform: scale(1); color:#00ff00;} // 從原本大小開始
25%{transform:scale(1.5); color:#ff00ff;} // 放大為 1.5 倍,產生類似心跳的畫面
}
.content
{
@include center; // 呼叫 center
i
{
....
animation: expand 1500ms ease-in-out infinite;
}
}
i:nth-child(1)
{
animation-delay:300ms; // 動畫顯示延遲時間
裡面用到了 font-awesome.min.css 所以記得要在 CodePen 實作要記得在 Setting 中加入
HTML:
<div class="content">
<i class="fa fa-plane fa-5x tt"></i> // fa-bug fa-plane 就是 font-awesome 所提供
<i class="fa fa-bug fa-5x tt"></i>
<i class="fa fa-phone fa-5x tt"></i>
</div>
SCSS:
@minxin center{ // scss 繼承 Center
...
}
@keyframes expand // 實作動態顯示函數
{
from{ transform: scale(1); color:#00ff00;} // 從原本大小開始
25%{transform:scale(1.5); color:#ff00ff;} // 放大為 1.5 倍,產生類似心跳的畫面
}
.content
{
@include center; // 呼叫 center
i
{
....
animation: expand 1500ms ease-in-out infinite;
}
}
i:nth-child(1)
{
animation-delay:300ms; // 動畫顯示延遲時間
留言
張貼留言