web-page/js/script.js

53 lines
1.5 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() {
window.location.href = "https://fosstodon.org/@alexanderzhirov";
});
$(".twitter").on( "click", function() {
window.location.href = "https://twitter.com/zhirofficial";
});
$(".linkedin").on( "click", function() {
window.location.href = "https://www.linkedin.com/in/alexander-zhirov-34b6711a6";
});
$(".facebook").on( "click", function() {
window.location.href = "https://www.facebook.com/azhirov1991";
});
$(".instagram").on( "click", function() {
window.location.href = "https://www.instagram.com/alexanderzhirov";
});
$(".git").on( "click", function() {
window.location.href = "https://git.zhirov.kz/alexander";
});
$(".github").on( "click", function() {
window.location.href = "https://github.com/AlexanderZhirov";
});
$(".telegram").on( "click", function() {
window.location.href = "https://t.me/alexanderzhirov";
});
$(".solus").on( "click", function() {
window.location.href = "https://dev.getsol.us/p/alexanderzhirov";
});
$(".blog").on( "click", function() {
window.location.href = "https://blog.zhirov.kz";
});
$(".ftp").on( "click", function() {
window.location.href = "https://ftp.zhirov.kz";
});
$(".email").on( "click", function() {
window.location.href = "";
});
});