iOS
Webbplats
Apple.com iOSJailbreak (Cydia)
Förkortningar
- APN - Apple Push Notification
Funktion
Enheter
Ändra inställningar för position av adressfält i Safari på iOS
Aktivera Picture in picture för YouTube i Safari med Javascript
let v = document.querySelector('video');
v.addEventListener('webkitpresentationmodechanged', (e) => e.stopPropagation(), true);
setTimeout(() => v.webkitSetPresentationMode('picture-in-picture'), 3000);
completion();
Tillägg
Versioner
- iOS 16ny
- iOS 15ny
- iOS 14
- iOS 13
- iOS 12
- iOS 11
- iOS 10
- iOS 9
- iOS 8
- iOS 7
- iOS 6
- iOS 5
- iOS 4
- iOS 3
- iOS 2
- iOS
Meta för applikation
<meta name="apple-itunes-app" content="Sökmotorn">
Styling för iOS Safari
- -webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
- -webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
- -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
- -webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */