Untitled Snippet

document.addEventListener(“DOMContentLoaded”, () => { const canvas = document.getElementById(“canvas”); const ctx = canvas.getContext(“2d”); const expressionInput = document.getElementById(“expressionInput”); const drawButton = document.getElementById(“drawButton”); const resetButton = document.getElementById(“resetButton”); const saveButton = document.getElementById(“saveButton”); const colorPicker = document.getElementById(“colorPicker”); const gridToggle = document.getElementById(“gridToggle”); let scaleX = 25;…Continue reading

Untitled Snippet

body { font-family: Arial, sans-serif; text-align: center; margin: 20px; background-color: #f9f9f9; color: #333; } h1 { color: #4a90e2; } #controls { display: flex; justify-content: center; align-items: center; gap: 10px; margin-bottom: 20px; } #controls input, #controls button { padding: 10px; font-size:…Continue reading

Untitled Snippet

Đồ Thị Hàm Số Đồ Thị Hàm Số Thêm Đồ Thị Reset Màu Đồ Thị: Hiển Thị Lưới: Lưu Kết Quả Hướng Dẫn Nhập Phép Toán Ký Hiệu Mũ ** Nhân * Chia / Cộng + Trừ – Sin sin(x)…Continue reading

Body on Scroll

;(function ($) { $(window).scroll(function() { var scroll = $(window).scrollTop(); if (scroll >= 5) { $(“body”).addClass(“scroll-500”); $(“.tm-header”).removeClass(“uk-blend-difference”); } else { $(“body”).removeClass(“scroll-500”); $(“.tm-header”).addClass(“uk-blend-difference”); } }); })(jQuery);Continue reading