Добавлен линк на галерею

This commit is contained in:
Alexander Zhirov 2024-09-14 21:20:17 +03:00
parent 5e56eb4511
commit bce7224732
4 changed files with 6 additions and 0 deletions

View File

@ -99,6 +99,7 @@ div.social {
.soundcloud { background-image: url(../images/social/soundcloud.png); }
.email { background-image: url(../images/social/email.png); }
.matrix { background-image: url(../images/social/matrix.png); }
.gallery { background-image: url(../images/social/gallery.png); }
.tooltip {
position: relative;

BIN
images/social/gallery.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -39,6 +39,7 @@
<div class="tooltip band"><span class="tooltiptext">Band</span></div>
<div class="tooltip soundcloud"><span class="tooltiptext">Soundcloud</span></div>
<!-- <div class="tooltip email"><span class="tooltiptext">Email</span></div> -->
<div class="tooltip gallery"><span class="tooltiptext">Gallery</span></div>
</div>
</body>
</html>

View File

@ -61,4 +61,8 @@ $(document).ready(function(){
$(".matrix").on( "click", function() {
window.open("https://matrix.to/#/@alexanderzhirov:matrix.org");
});
$(".gallery").on( "click", function() {
window.open("https://piwigo.zhirov.kz");
});
});