Skip to content
Click here
About
Close About
Open About
About ITS
Facts and History
Vision and Mission
Rankings & Achievements
Brand Guidelines
Visit Us
Rector
Senate
Board of Trustees (MWA)
Vice Rectors
Secretary
Leadership
Admission
Study at ITS
Close Study at ITS
Open Study at ITS
Faculties & School
Campus Life
Facilities
Research
News
More
Close More
Open More
Smart Eco Campus
Research
Innovation
Industrial Services
Initiatives
Public Services
Digital Services
New Students
For Staff
For Parents
Tentang
Close Tentang
Open Tentang
Profil ITS
Fakta dan Sejarah
Visi dan Misi
Penghargaan
Identitas Visual
Kunjungi ITS
Struktur Organisasi
MWA
Senat Akademik
Pendaftaran
Kuliah di ITS
Close Kuliah di ITS
Open Kuliah di ITS
Fakultas & Sekolah
Kehidupan Kampus
Fasilitas
Riset
Berita
Lainnya
Close Lainnya
Open Lainnya
Smart Eco Campus
Penelitian
Inovasi
Layanan Industri
Inisiatif
Layanan Publik
Layanan Digital
Mahasiswa Baru
Untuk Pegawai
Untuk Orang Tua
EN
ID
MyITS
EN
ID
About
Admission
Study at ITS
Research
News
More
Tentang
Pendaftaran
Kuliah di ITS
Riset
Berita
Lainnya
about
About ITS
Facts and History
Vision and Mission
Rankings & Achievements
Brand Guidelines
Visit Us
leaderships
Rector
Senate
Board of Trustees (MWA)
Vice Rectors
Secretary
Leadership
Tentang
Tentang ITS
Fakta dan Sejarah
Visi dan Misi
Peringkat dan Penghargaan
Identitas Visual
Kunjungi ITS
Pimpinan
Rektor
Senat
MWA
Wakil Rektor
Sekretaris
Pimpinan
STUDY AT ITS
Faculties & School
Campus Life
Facilities
Kuliah di ITS
Fakultas
Kehidupan Kampus
Fasilitas
access more information
Smart Eco Campus
Research
Innovation
Industrial Services
Initiatives
Public Services
Digital Services
New Students
For Staff
For Parents
access more information
Smart Eco Campus
Penelitian
Inovasi
Layanan Industri
Inisiatif
Layanan Publik
Layanan Digital
Mahasiswa Baru
Untuk Pegawai
Untuk Orang Tua
.its-menu-screen { display: none; } .its-menu-screen.is-active { display: flex; min-width: 100%; } document.addEventListener('DOMContentLoaded', function () { var root = document.querySelector('.its-menu-screen-root'); if (!root) return; var allScreens = document.querySelectorAll('.its-menu-screen'); function showScreen(name) { allScreens.forEach(function (screen) { var screenName = screen.getAttribute('data-screen'); screen.classList.toggle('is-active', screenName === name); }); } // Start on root screen showScreen('root'); // Handle clicks in the whole off-canvas area document.addEventListener('click', function (e) { // 1) Root Icon List items using #target var link = e.target.closest('.its-menu-screen-root a'); if (link) { var href = link.getAttribute('href') || ''; if (href.charAt(0) === '#') { var target = href.slice(1); // "about", "study", "more" if (target) { e.preventDefault(); showScreen(target); return; } } } // 2) Back buttons var backBtn = e.target.closest('.its-menu-back'); if (backBtn && backBtn.dataset.back) { e.preventDefault(); showScreen(backBtn.dataset.back); } }); });
#sticky-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 999; background-color: transparent; border-bottom: 1px solid transparent; backdrop-filter: none; transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease; } #sticky-header.is-scrolled { background-color: rgba(255, 255, 255, 0.9); backdrop-filter: blur(40px); border-bottom-color: #EBF2F6; } /* Default menu color (before scroll) */ #sticky-header .e-n-menu-title-text { color: #FFFFFF; transition: color 0.3s ease; } /* After scroll: menu text color changes */ #sticky-header.is-scrolled .e-n-menu-title-text { color: #5B6576; } /* 1) Caret icon color same as menu text (#5B6576) */ #sticky-header.is-scrolled .e-font-icon-svg.e-fas-caret-down { color: #5B6576; fill: currentColor; } /* 2) MY ITS button styles when scrolled */ #sticky-header.is-scrolled .sticky-header-myits .elementor-button { background-color: #187DC2; color: #FFFFFF; border-color: #187DC2; /* optional but usually desired */ } /* Button icon SVG inside MY ITS button */ #sticky-header.is-scrolled .sticky-header-myits .elementor-button .elementor-button-icon svg { color: #FFFFFF; fill: currentColor; } /* Button text inside MY ITS button */ #sticky-header.is-scrolled .sticky-header-myits .elementor-button .elementor-button-text { color: #FFFFFF; } .mega-menu{ background-color: #243A5E99; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0px 4px 16px -6px #00000040; } /* New Rule for Mega Menu */ .mega-menu.is-scrolled { background-color: #FFFFFFE5; } .mega-menu.is-scrolled .mega-menu-title { color: #6489A7; } .mega-menu.is-scrolled .mega-menu-item-list .elementor-icon-list-text { color: #7C8799 !important; } (function () { document.addEventListener('DOMContentLoaded', function () { var header = document.querySelector('#sticky-header'); var megaMenus = document.querySelectorAll('.mega-menu'); if (!header) return; var logoImg = header.querySelector('.sticky-header-logo img'); var originalLogoSrc = logoImg ? logoImg.getAttribute('src') : null; var blueLogoSrc = originalLogoSrc ? originalLogoSrc.replace('LOGO-ITS.svg', 'LOGO-ITS-BLUE.svg') : null; var threshold = window.innerWidth * 0.3; var isAlwaysScrolled = (function () { var path = window.location.pathname || ''; var onNews = path === '/news' || path.indexOf('/news/') === 0; var onCampusLife = path === '/campus-life' || path.indexOf('/campus-life/') === 0; var onAgenda = path === '/agenda' || path.indexOf('/agenda/') === 0; var body = document.body || null; var isSingle = body && (body.classList.contains('single') || body.classList.contains('single-post')); return onNews || isSingle || onCampusLife || onAgenda; })(); function setLogo(scrolled) { if (!logoImg) return; if (scrolled && blueLogoSrc) { logoImg.src = blueLogoSrc; } else if (originalLogoSrc) { logoImg.src = originalLogoSrc; } } function handleScroll() { if (isAlwaysScrolled) { header.classList.add('is-scrolled'); megaMenus.forEach(function(menu) { menu.classList.add('is-scrolled'); }); setLogo(true); return; } if (window.scrollY > threshold) { header.classList.add('is-scrolled'); megaMenus.forEach(function(menu) { menu.classList.add('is-scrolled'); }); setLogo(true); } else { header.classList.remove('is-scrolled'); megaMenus.forEach(function(menu) { menu.classList.remove('is-scrolled'); }); setLogo(false); } } window.addEventListener('scroll', handleScroll, { passive: true }); window.addEventListener('resize', function () { threshold = window.innerWidth * 0.3; handleScroll(); }); handleScroll(); }); })();
Agenda
Training Title: Master the Art of Cross-Platform Storytelling
read
Latest News
Thu, 16 May 2024
Workshop : Get To Know Microsoft PowerBI
Wed, 8 May 2024
Offline Training : Pelatihan dan Sertifikasi Photography
Wed, 8 May 2024
Online Training : Pelatihan dan Sertifikasi MOS Excel Associate
Wed, 8 May 2024
Online Training : Pelatihan dan Sertifikasi Adobe Illustrator
Wed, 8 May 2024
Online Training : Pelatihan dan Sertifikasi Digital Marketing
Wed, 8 May 2024
Online Training : Pelatihan dan Sertifikasi Drafter 2D
Tue, 7 May 2024
Hybrid Training : Pelatihan dan Sertifikasi Ahli K3 Umum
Mon, 6 May 2024
VOTESA : BOOTCAMP STRUCTURAL DESIGN OF BUILDING
Previous
Page
1
Page
2
Page
3
Page
4
Page
5
Next
1
...
12
13
14
15
16
...
141
Trending
Training Title: Master the Art of Cross-Platform Storytelling
Training Title: Quick Ways to Detect “Unhealthy” vs “Healthy” Companies from Financial Statements
ADVANCED BIM WORKFLOW: Integrasi Autodesk Forma (AI), Construction Cloud (CDE), & Navisworks (4D)
Latest Videos
Training Title: Master the Art of Cross-Platform Storytelling
Training Title: Master the Art of Cross-Platform Storytelling
Training Title: Quick Ways to Detect “Unhealthy” vs “Healthy” Companies from Financial Statements
ADVANCED BIM WORKFLOW: Integrasi Autodesk Forma (AI), Construction Cloud (CDE), & Navisworks (4D)
×