Вариант 1:
1 |
<div class="mouse"></div> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
.mouse { width: 50px; height: 90px; border: 2px solid #337AB7; border-radius: 60px; position: relative; margin: 20px auto; box-sizing: border-box; } .mouse::before { content: ''; width: 12px; height: 12px; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); background-color: #337AB7; border-radius: 50%; opacity: 1; animation: wheel 2s infinite; } @keyframes wheel { to { opacity: 0; top: 60px; } } |
Вариант 2:
Вариант 3:
1 2 3 |
<div class="arrow-wr"> <div class="arrow"></div> </div> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
.arrow-wr { height: 70px; margin: 20px 0; } .arrow { width: 0; height: 40px; border: 1px solid #337AB7; position: relative; animation: scroll 1.5s infinite; margin: auto; } .arrow::after { content: ''; display: block; position: absolute; top: 100%; left: -5px; width: 1px; height: 10px; border-top: 10px solid #337AB7; border-left: 5px solid transparent; border-right: 5px solid transparent; } @keyframes scroll { 0% { height: 40px; } 30% { height: 70px; } 60% { height: 40px; } } |
Добавить комментарий: