Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div class="world">
  <div class="title">
    <img src="https://drive.google.com/uc?export=view&id=126MHBBVOt1GjxqMKMaYrLvrOPmhL6Sy2">
    <div>名言製造マシーンウーマン<br>キヨコのひとりごと</div>
  </div>
  <div class="board">あー。なんか名言っぽいの言いたい。</div>
  <div class="board">名言っぽいツイートしたい。</div>
  <div class="board">そんでもってみんなに「素敵な言葉」って言われたいわー。</div>
  <div class="board">・・・・・。</div>
  <div class="board">・・・・・キタわ。</div>
  <div class="board">"「自分のことが嫌い」と言うアナタのことが嫌いです"</div>
  <div class="board">"だって私はアナタが好きだから"</div>
  <div class="board">"好きな人の事を「嫌い」なんて言われたら悲しい気持ちになる"</div>
  <div class="board">"だから私が好きな「アナタ」の事を「アナタ」も好きになってください"</div>
  <div class="board">・・・キタわ。コレ。</div>
  <div class="board">みんなの胸に刺さるヤツキタわー。</div>
  <div class="board">バズっちゃうわー。</div>
  <div class="board">はやくみんなの反応がみたいわー。</div>
  <div class="board">・・・ん!キタ!</div>
  <div class="board">-すし太郎-<br>あけましておめでとうございます!今年もよろしくお願いします!</div>
  <div class="board">ち、ちょっと待って!</div>
  <div class="board">「おめでとうございます!」じゃないわよ!</div>
  <div class="board">思いっきしスルーしてんじゃん!</div>
  <div class="board">せっかく名言思いついたのにムダじゃん!</div>
  <div class="board">・・えぇぇぇ。</div>
  <div class="board">ちょっとどうすんのコレ。・・・っあ!二人目キタ!</div>
  <div class="board">-わっちくん-<br>あけましておめでとうございます。今年も積み上げていきましょう!!</div>
  <div class="board">・・・・。マジか。</div>
  <div class="board">この流れはヤバいわ。完全に新年の挨拶する感じのヤツになってんじゃん!</div>
  <div class="board">なんとかしてこっちに流れ呼び戻さないと。</div>
  <div class="board">せっかくの名言が埋もれちゃうじゃん。ヨシ!</div>
  <div class="board">-キヨコ-<br>すし太郎さんは自分のこと好きですよね。私を悲しい気持ちにさせないでくださいね。</div>
  <div class="board">どうだ!?ちょっと強引か!?</div>
  <div class="board">バレるか!?</div>
  <div class="board">頼む!!</div>
  <div class="board">名言を深堀りできるようなイイ感じのヤツ返ってこい!</div>
  <div class="board">・・・まだか!?すし太郎なにやってる!!</div>
  <div class="board">・・・キタ!!!!</div>
  <div class="board">-すし太郎-<br>自分のこと大好きですよ。僕ナルシストなんで。なんつって笑</div>
  <div class="board">待て待て待て待て!!</div>
  <div class="board">そーじゃないから。そーゆーふざけた感じのヤツいらないから。今は!</div>
  <div class="board">こっから戻せる?わたし。</div>
  <div class="board">これはマジで考えないとマズいことに・・・ん?</div>
  <div class="board">-わっちくん-<br>すし太郎さんウケる笑ナルシストて笑</div>
  <div class="board">・・・オイオイオイ。なんか始まっちゃったよ・・・。</div>
  <div class="board">だめだコリャ。</div>
<div>
              
            
!

CSS

              
                * {
  margin: 0;
  padding: 0;
}
body {
  overflow: hidden;
  background-color: black;
  transform-style: preserve-3d;
  perspective: 500px;
}
.world {
  width: 100vw;
  height: 100vh;
  transform-style: preserve-3d;
}
.title {
  position: absolute;
  width: 40vw;
  height: 40vw;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) translateZ(-1000px);
  text-align: center;
}
.title img {
  width: 80%;
}
.title div {
  font-size: 2vw;
  font-weight: bold;
  background-color: pink;
}
.board {
  display: flex;
  align-items: center;
  position: absolute;
  width: 50vw;
  height: 50vw;
  top: 50%;
  font-size: 5vw;
  color: white;
}
.board:nth-child(odd) {
  left: 0;
}
.board:nth-child(even) {
  right: 0;
}
              
            
!

JS

              
                $(function(){
  const Z_DISTANCE = -1000;
  var cnt = $(".board").length;
  var worldZ = 0;
  
  /*** ボードの初期位置 ***/
  for(var i = 2; i <= cnt+1; i++){
    if(i % 2 == 1){
      $(".board:nth-child(" + i + ")").css("transform", "translateX(-20%) translateY(-50%) translateZ(" + (-1000 + Z_DISTANCE * i) +"px)");  
    } else {
      $(".board:nth-child(" + i + ")").css("transform","translateX(20%) translateY(-50%) translateZ(" + (-1000 + Z_DISTANCE * i) + "px)");  
    }
  }
  
  /*** 手前に向かって移動させる ***/
  setInterval(function(){
    worldZ += 4;
    $(".world").css("transform","translateZ(" + worldZ + "px)");
    if(worldZ > 44000){
      worldZ = 0
    }
  },10);
});
              
            
!
999px

Console