# Profile Card and Hover Effect
[竹白記事本](https://chupainotebook.blogspot.com/2019/02/css-effect.html),學習紀錄,2019/02/24。
>[Profile Card and Hover Effect in CSS 3 For website design](https://www.youtube.com/watch?v=Mb7WKuUIG64)
###### tags: `bootstrap-grid` `fontawesome` `transition`
## CodePen
>[Profile Card and Hover Effect](https://codepen.io/chupai/pen/vboojz)
<iframe height="265" style="width: 100%;" scrolling="no" title="Profile Card and Hover Effect in CSS 3 For website design" src="//codepen.io/chupai/embed/vboojz/?height=265&theme-id=0&default-tab=result" frameborder="no" allowtransparency="true" allowfullscreen="true">
See the Pen <a href='https://codepen.io/chupai/pen/vboojz/'>Profile Card and Hover Effect in CSS 3 For website design</a> by Chupai@Design
(<a href='https://codepen.io/chupai'>@chupai</a>) on <a href='https://codepen.io'>CodePen</a>.
</iframe>
## Bootstrap 4 Grid system
>[Bootstrap 4 Grid system](https://getbootstrap.com/docs/4.0/layout/grid/)
Bootstrap 4 的格線系統。
## Font Awesome
>[Font Awesome](https://fontawesome.com/)
輕鬆在網頁加入 ICON 圖示。
## transition
>[transition|MDN](https://developer.mozilla.org/zh-CN/docs/Web/CSS/transition)
定義元件在兩個狀態之間切換的轉場效果。
- `transition-property`,指定進行變換的屬性(預設 `all`)。
- `transition-duration`,指定屬性值變換的時間(預設 `0s`)。
- `transition-timing-function`,指定屬性變換的速度(預設 `ease`)。
- `transition-delay`,指定變換效果的延遲時間(預設 `0s`)。