This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import telebot | |
from telebot import types | |
bot = telebot.TeleBot('5844023785:AAHf_5RwqTlN2twL9W3y-7slgJyzHmEbw-Q') | |
# стартовое сообщение | |
@bot.message_handler(commands=['start']) | |
def startMessage(message): | |
keyboard = types.InlineKeyboardMarkup() | |
button = types.InlineKeyboardButton('>', callback_data='mainmenu') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
--violet_main: rgb(174, 156, 255); | |
--violet_dark: rgb(106, 53, 156); | |
--pink: rgb(184, 43, 207); | |
} | |
@keyframes sex{ | |
from { | |
background-position: 0% center; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
let timer; | |
const timerDisplay = document.getElementById('seconds'); | |
let actualCoef = 1; | |
document.getElementById('timerButton').addEventListener('click', startTimer); | |
// функция запуска таймера | |
function startTimer() { | |
let timerButton = document.getElementById('timerButton') | |
timerButton.style.opacity = '75%'; |