web-page/js/script.js

65 lines
1.7 KiB
JavaScript
Raw Normal View History

$(document).ready(function(){
2023-04-29 23:32:22 +00:00
$(this).on("contextmenu", e => e.preventDefault());
2023-05-01 23:55:04 +00:00
$("body").delay(500).fadeTo(500, 1);
$(".mastodon").on( "click", function() {
2023-05-02 00:09:31 +00:00
window.open("https://fosstodon.org/@alexanderzhirov");
2023-05-01 23:55:04 +00:00
});
$(".twitter").on( "click", function() {
2023-05-02 00:09:31 +00:00
window.open("https://twitter.com/zhirofficial");
2023-05-01 23:55:04 +00:00
});
$(".linkedin").on( "click", function() {
2023-05-02 00:09:31 +00:00
window.open("https://www.linkedin.com/in/alexander-zhirov-34b6711a6");
2023-05-01 23:55:04 +00:00
});
$(".facebook").on( "click", function() {
2023-05-02 00:09:31 +00:00
window.open("https://www.facebook.com/azhirov1991");
2023-05-01 23:55:04 +00:00
});
$(".instagram").on( "click", function() {
2023-05-02 00:09:31 +00:00
window.open("https://www.instagram.com/alexanderzhirov");
2023-05-01 23:55:04 +00:00
});
$(".git").on( "click", function() {
2023-05-02 00:09:31 +00:00
window.open("https://git.zhirov.kz/alexander");
2023-05-01 23:55:04 +00:00
});
$(".github").on( "click", function() {
2023-05-02 00:09:31 +00:00
window.open("https://github.com/AlexanderZhirov");
2023-05-01 23:55:04 +00:00
});
$(".telegram").on( "click", function() {
2023-05-02 00:09:31 +00:00
window.open("https://t.me/alexanderzhirov");
2023-05-01 23:55:04 +00:00
});
$(".solus").on( "click", function() {
2023-05-02 00:09:31 +00:00
window.open("https://dev.getsol.us/p/alexanderzhirov");
2023-05-01 23:55:04 +00:00
});
$(".blog").on( "click", function() {
2023-05-02 00:09:31 +00:00
window.open("https://blog.zhirov.kz");
2023-05-01 23:55:04 +00:00
});
$(".ftp").on( "click", function() {
2023-05-02 00:09:31 +00:00
window.open("https://ftp.zhirov.kz");
2023-05-01 23:55:04 +00:00
});
2023-07-26 11:38:30 +00:00
$(".band").on( "click", function() {
window.open("https://www.realrocks.ru/formaldehyde");
});
2023-07-26 13:09:23 +00:00
$(".soundcloud").on( "click", function() {
window.open("https://soundcloud.com/alexanderzhirov");
});
2023-05-01 23:55:04 +00:00
$(".email").on( "click", function() {
2023-05-02 00:09:31 +00:00
window.open("");
2023-05-01 23:55:04 +00:00
});
2024-05-29 11:31:53 +00:00
$(".matrix").on( "click", function() {
window.open("https://matrix.to/#/@alexanderzhirov:matrix.org");
});
});