LoginSignup
11
10

More than 5 years have passed since last update.

CSS3で作った格好いいスクロールエフェクト

Posted at

※ Newsタグを作ってみました。シンプルにリンクを紹介する時等にどうぞ。

CSS3で作った格好いいスクロールエフェクトのデモ。

ソースコードはこちら

Flip (CSS 3D) とかお気に入り(79行目 辺り?)。
ベンダープレフィックスをつらつらと並べながらcss3D関連の機能を設定している、のかな?

main.css
/**
* Flip styles
*/
.flip {
-webkit-perspective: 400px;
-moz-perspective: 400px;
-ms-perspective: 400px;
-o-perspective: 400px;
perspective: 400px;

-webkit-perspective-origin: 50% 50%;
-moz-perspective-origin: 50% 50%;
-ms-perspective-origin: 50% 50%;
-o-perspective-origin: 50% 50%;
perspective-origin: 50% 50%;
}
.
.
11
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
10