1{{--
2 Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
3 See the LICENCE file in the repository root for full licence text.
4--}}
5<div class="loading-overlay js-loading-overlay">
6 <div class="loading-overlay__container">
7 @foreach (range(1, 4) as $n)
8 <div class="loading-overlay__follow-point
9 loading-overlay__follow-point--{{ $n }}">
10 ›
11 </div>
12
13 @foreach (['approach', 'hit'] as $type)
14 <div class="loading-overlay__circle
15 loading-overlay__circle--{{ $n }}
16 loading-overlay__circle--{{ $type }}"
17 ></div>
18 @endforeach
19 @endforeach
20 </div>
21</div>