Пример:
HTML:
1 2 3 4 5 6 7 8 9 10 11 |
<div class="hexagon-photo"> <div class="hexagon hex-big"></div> <div class="hexagon hex-big"></div> <div class="hexagon"></div> <div class="hexagon"></div> <div class="hexagon"></div> <div class="hexagon hex-small"></div> <div class="hexagon hex-small"></div> <div class="hexagon hex-small"></div> <div class="hexagon hex-small"></div> </div> |
CSS:
Масштаб изменяется значением свойства font-size
в классе .hexagon-photo
. При его изменении стоит подкоректировать переключение на мобильные варианты, изменив значения @media screen and (max-width: новое_значение)
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 |
.hexagon-photo { font-size: 1em; position: relative; height: 37em; width: 39em; margin: 20px auto; background-image: radial-gradient(circle, #337AB7 0%, #337AB7 70%, transparent 70%, transparent 100%), radial-gradient(circle, #BFE2FF 0%, #BFE2FF 70%, transparent 70%, transparent 100%), radial-gradient(circle, #BFE2FF 0%, #BFE2FF 70%, transparent 70%, transparent 100%); background-repeat: no-repeat; background-size: 20em 20em, 15em 15em, 12em 12em; background-position: 5em 5em, 20em 10em, 11em 25em; } @media screen and (max-width: 767px) { .hexagon-photo { height: 46em; width: 30em; background-size: 20em 20em, 17em 17em, 10em 10em; background-position: 2em 3em, 10em 16em, 3em 32em; } } @media screen and (max-width: 580px) { .hexagon-photo { height: 61em; width: 20em; background-size: 18em 18em, 17em 17em, 10em 10em; background-position: 1.5em 7em, 0em 25em, 7em 44em; } } .hexagon { position: absolute; height: 10em; width: 10em; filter: drop-shadow(0 7px 15px rgba(0, 0, 0, 0.5)); } .hexagon.hex-big { height: 15em; width: 15em; } .hexagon.hex-small { height: 6em; width: 6em; } .hexagon:before { content: ''; position: absolute; width: 100%; height: 100%; top: 0; left: 0; clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%); background-size: cover; } .hexagon:nth-of-type(1):before { background-image: url("photo-1.jpg"); } .hexagon:nth-of-type(2):before { background-image: url("photo-2.jpg"); } .hexagon:nth-of-type(3):before { background-image: url("photo-3.jpg"); } .hexagon:nth-of-type(4):before { background-image: url("photo-4.jpg"); } .hexagon:nth-of-type(5):before { background-image: url("photo-5.jpg"); } .hexagon:nth-of-type(6):before { background-image: url("photo-6.jpg"); } .hexagon:nth-of-type(7):before { background-image: url("photo-7.jpg"); } .hexagon:nth-of-type(8):before { background-image: url("photo-8.jpg"); } .hexagon:nth-of-type(9):before { background-image: url("photo-9.jpg"); } .hexagon:nth-of-type(1) { top: 3em; left: 5em; } .hexagon:nth-of-type(2) { top: 11em; left: 18em; } .hexagon:nth-of-type(3) { top: 0; left: 19em; } .hexagon:nth-of-type(4) { top: 22em; left: 10em; } .hexagon:nth-of-type(5) { top: 27em; left: 20em; } .hexagon:nth-of-type(6) { top: 30em; left: 5em; } .hexagon:nth-of-type(7) { top: 10em; left: 32em; } .hexagon:nth-of-type(8) { top: 1em; left: 1em; } .hexagon:nth-of-type(9) { top: 23em; left: 31em; } @media screen and (max-width: 767px) { .hexagon:nth-of-type(1) { top: 3em; left: 5em; } .hexagon:nth-of-type(2) { top: 17em; left: 14em; } .hexagon:nth-of-type(3) { top: 0; left: 19em; } .hexagon:nth-of-type(4) { top: 27em; left: 6em; } .hexagon:nth-of-type(5) { top: 33em; left: 16em; } .hexagon:nth-of-type(6) { top: 14em; left: 1em; } .hexagon:nth-of-type(7) { top: 40em; left: 11em; } .hexagon:nth-of-type(8) { top: 1em; left: 1em; } .hexagon:nth-of-type(9) { top: 11em; left: 20em; } } @media screen and (max-width: 580px) { .hexagon:nth-of-type(1) { top: 4em; left: 4em; } .hexagon:nth-of-type(2) { top: 20em; left: 1em; } .hexagon:nth-of-type(3) { top: 35em; left: 7em; } .hexagon:nth-of-type(4) { top: 43em; left: 0em; } .hexagon:nth-of-type(5) { top: 48em; left: 9em; } .hexagon:nth-of-type(6) { top: 20em; left: 14em; height: 4em; width: 4em; } .hexagon:nth-of-type(7) { top: 54em; left: 3em; } .hexagon:nth-of-type(8) { top: 1em; left: 1em; } .hexagon:nth-of-type(9) { top: 36em; left: 4em; height: 3em; width: 3em; } } |
За основу взято решение, найденное codepen.io у пользователя Ivan Bogachev
Фотографии kellepics
А как можно сделать появляющийся поясняющий текст со ссылкой в данной секции?
Ссылка ставится как обычно, обернув фото, а подсказка - любое решение для подсказок, например с бутстрапа.