Skip to content

Instantly share code, notes, and snippets.

@kamilklkn
Created January 26, 2021 23:04
Show Gist options
  • Save kamilklkn/89b1ff1fda1dbc6c416edc52a2300b5a to your computer and use it in GitHub Desktop.
Save kamilklkn/89b1ff1fda1dbc6c416edc52a2300b5a to your computer and use it in GitHub Desktop.
Sayfanın mobil cihazda mı yoksa masaüstünde mi görüntülendiğini algılar.
const detectDeviceType = () =>
/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(
navigator.userAgent
)
? 'Mobile'
: 'Desktop';
//ÖRNEKLER
detectDeviceType(); // 'Mobile' or 'Desktop'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment