前提・実現したいこと
PHPを使って「animation-delay」の値をランダムにしようとしています。
効率の良い書き方はありますでしょうか?
該当のソースコード
<style> .item img { animation: opacity 1s both; } @-webkit-keyframes opacity { 0% { opacity: 0; } 100% { opacity: 1; } } </style> <div class="box1"> <div class="item"><img style="animation-delay:0.<?php echo mt_rand(1, 9).'s'?> ;" src="/img/img1.png"></div> <div class="item"><img style="animation-delay:0.<?php echo mt_rand(1, 9).'s'?> ;" src="/img/img2.png"></div> <div class="item"><img style="animation-delay:0.<?php echo mt_rand(1, 9).'s'?> ;" src="/img/img3.png"></div> <div class="item"><img style="animation-delay:0.<?php echo mt_rand(1, 9).'s'?> ;" src="/img/img4.png"></div> </div> <div class="box2"> <div class="item"><img style="animation-delay:0.<?php echo mt_rand(1, 9).'s'?> ;" src="/img/img5.png"></div> <div class="item"><img style="animation-delay:0.<?php echo mt_rand(1, 9).'s'?> ;" src="/img/img6.png"></div> <div class="item"><img style="animation-delay:0.<?php echo mt_rand(1, 9).'s'?> ;" src="/img/img7.png"></div> <div class="item"><img style="animation-delay:0.<?php echo mt_rand(1, 9).'s'?> ;" src="/img/img8.png"></div> </div>
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/25 06:47
2019/11/25 07:48