Adapter pour afficher une image statique sur mobile
This commit is contained in:
parent
3351771be7
commit
15957f0462
4 changed files with 37 additions and 1 deletions
24
public/javascripts/device-detection.js
Normal file
24
public/javascripts/device-detection.js
Normal file
|
@ -0,0 +1,24 @@
|
|||
// public/javascripts/device-detection.js
|
||||
|
||||
function isMobileDevice() {
|
||||
return (typeof window.orientation !== "undefined") || (navigator.userAgent.indexOf('IEMobile') !== -1);
|
||||
}
|
||||
|
||||
function checkDeviceType() {
|
||||
const gameContainer = document.getElementById('gameContainer');
|
||||
const mobileMessage = document.getElementById('mobileMessage');
|
||||
|
||||
if (isMobileDevice()) {
|
||||
gameContainer.style.display = 'none';
|
||||
mobileMessage.style.display = 'block';
|
||||
} else {
|
||||
gameContainer.style.display = 'block';
|
||||
mobileMessage.style.display = 'none';
|
||||
}
|
||||
}
|
||||
|
||||
// Run the check when the page loads
|
||||
window.addEventListener('load', checkDeviceType);
|
||||
|
||||
// Also run the check if the window is resized (in case of device rotation)
|
||||
window.addEventListener('resize', checkDeviceType);
|
|
@ -0,0 +1,5 @@
|
|||
#mobileMessage {
|
||||
text-align: center;
|
||||
padding: 20px;
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue