How to Hide Fullscreen Video Controls in Safari 11
up vote
0
down vote
favorite
Environment:
- MacBook Pro
- MacOS High Sierra 10.13.3
- Safari 11.0.3
Long story short, I'm able to hide the fullscreen video controls in Chrome and Firefox, but not Safari. I thought the below CSS snippet would work for both Chrome and Safari, but I think maybe it doesn't because Safari's shadow DOM doesn't have "-webkit-media-controls".
::-webkit-media-controls {
display:none !important;
}
Here's the video tag with shadow DOM (.media-controls-container) shown in Safari dev tools. I can hide the controls by editing the user agent stylesheet in the dev tools, but I can't seem to do it with code. Any ideas on how to hide the controls?
<video autoplay="" style="width:711px; height:400px;" width="711px" height="400px" src="blob:https://localhost/...">
<div class="media-controls-container">
<div pseudo="-webkit-media-text-track-container" class="visible-controls-bar" style="display: none;"></div>
<div class="media-controls mac fullscreen fade-in uses-ltr-user-interface-layout-direction" style="width: 1440px; height: 419px;">
<div role="group" class="controls-bar bottom" style="transform: translate(53px, 52px);">
<div class="background-tint">
<div class="blur"></div>
<div class="tint"></div>
</div>
<div class="buttons-container left" style="width: 118px;">
<button class="volume-down bar" aria-label="Volume Down" style="width: 12px; height: 12px; left: 12px;">
<picture style="width: 12px; height: 12px; -webkit-mask-image: ;"></picture>
</button>
<div class="slider volume" style="height: 16px; width: 60px; left: 30px;">
<div class="custom-slider">
<div class="track fill"></div>
<div class="primary fill" style="width: 55.5px;"></div>
<div class="secondary fill" style="left: 55.5px; right: 100%;"></div>
<div class="knob" style="left: 55.5px;"></div>
</div>
<input type="range" min="0" max="1" step="0.001">
</div>
<button class="volume-up bar" aria-label="Volume Up" style="width: 22px; height: 15px; left: 96px;">
<picture style="width: 22px; height: 15px; -webkit-mask-image: ;"></picture>
</button>
</div>
<div class="buttons-container center" style="width: 178px;">
<button class="rewind bar" aria-label="Rewind" style="width: 24px; height: 16px; left: 27px;">
<picture style="width: 24px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
<button class="play-pause bar paused" aria-label="Play" style="width: 22px; height: 26px; left: 78px;">
<picture style="width: 22px; height: 26px; -webkit-mask-image: ;"></picture>
</button>
<button class="forward bar" aria-label="Forward" style="width: 24px; height: 16px; left: 127px;">
<picture style="width: 24px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
</div>
<div class="buttons-container right" style="width: 83px;">
<button class="pip bar" aria-label="Enter Picture in Picture" style="width: 19px; height: 16px; left: 12px;">
<picture style="width: 19px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
<button class="fullscreen bar" aria-label="Exit Full Screen" style="width: 16px; height: 16px; left: 55px;">
<picture style="width: 16px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
</div>
<div class="time-control" style="width: 448px;">
<div class="time-label" aria-label="Elapsed: 0 seconds" style="width: 27px;">0:00</div>
<div class="slider scrubber" style="height: 16px; left: 32px; width: 378px;">
<div class="custom-slider">
<div class="track fill"></div>
<div class="primary fill" style="width: 4.5px;"></div>
<div class="secondary fill" style="left: 4.5px; right: 12.860977327673195%;"></div>
<div class="knob" style="left: 4.5px;"></div>
</div>
<input type="range" min="0" max="1" step="0.001" aria-valuetext="0 seconds">
</div>
<div class="time-label" aria-label="Remaining: 35 seconds" style="width: 33px; left: 415px;">-0:35</div>
</div>
</div>
</div>
</div>
</video>
css macos safari html5-video shadow-dom
add a comment |
up vote
0
down vote
favorite
Environment:
- MacBook Pro
- MacOS High Sierra 10.13.3
- Safari 11.0.3
Long story short, I'm able to hide the fullscreen video controls in Chrome and Firefox, but not Safari. I thought the below CSS snippet would work for both Chrome and Safari, but I think maybe it doesn't because Safari's shadow DOM doesn't have "-webkit-media-controls".
::-webkit-media-controls {
display:none !important;
}
Here's the video tag with shadow DOM (.media-controls-container) shown in Safari dev tools. I can hide the controls by editing the user agent stylesheet in the dev tools, but I can't seem to do it with code. Any ideas on how to hide the controls?
<video autoplay="" style="width:711px; height:400px;" width="711px" height="400px" src="blob:https://localhost/...">
<div class="media-controls-container">
<div pseudo="-webkit-media-text-track-container" class="visible-controls-bar" style="display: none;"></div>
<div class="media-controls mac fullscreen fade-in uses-ltr-user-interface-layout-direction" style="width: 1440px; height: 419px;">
<div role="group" class="controls-bar bottom" style="transform: translate(53px, 52px);">
<div class="background-tint">
<div class="blur"></div>
<div class="tint"></div>
</div>
<div class="buttons-container left" style="width: 118px;">
<button class="volume-down bar" aria-label="Volume Down" style="width: 12px; height: 12px; left: 12px;">
<picture style="width: 12px; height: 12px; -webkit-mask-image: ;"></picture>
</button>
<div class="slider volume" style="height: 16px; width: 60px; left: 30px;">
<div class="custom-slider">
<div class="track fill"></div>
<div class="primary fill" style="width: 55.5px;"></div>
<div class="secondary fill" style="left: 55.5px; right: 100%;"></div>
<div class="knob" style="left: 55.5px;"></div>
</div>
<input type="range" min="0" max="1" step="0.001">
</div>
<button class="volume-up bar" aria-label="Volume Up" style="width: 22px; height: 15px; left: 96px;">
<picture style="width: 22px; height: 15px; -webkit-mask-image: ;"></picture>
</button>
</div>
<div class="buttons-container center" style="width: 178px;">
<button class="rewind bar" aria-label="Rewind" style="width: 24px; height: 16px; left: 27px;">
<picture style="width: 24px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
<button class="play-pause bar paused" aria-label="Play" style="width: 22px; height: 26px; left: 78px;">
<picture style="width: 22px; height: 26px; -webkit-mask-image: ;"></picture>
</button>
<button class="forward bar" aria-label="Forward" style="width: 24px; height: 16px; left: 127px;">
<picture style="width: 24px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
</div>
<div class="buttons-container right" style="width: 83px;">
<button class="pip bar" aria-label="Enter Picture in Picture" style="width: 19px; height: 16px; left: 12px;">
<picture style="width: 19px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
<button class="fullscreen bar" aria-label="Exit Full Screen" style="width: 16px; height: 16px; left: 55px;">
<picture style="width: 16px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
</div>
<div class="time-control" style="width: 448px;">
<div class="time-label" aria-label="Elapsed: 0 seconds" style="width: 27px;">0:00</div>
<div class="slider scrubber" style="height: 16px; left: 32px; width: 378px;">
<div class="custom-slider">
<div class="track fill"></div>
<div class="primary fill" style="width: 4.5px;"></div>
<div class="secondary fill" style="left: 4.5px; right: 12.860977327673195%;"></div>
<div class="knob" style="left: 4.5px;"></div>
</div>
<input type="range" min="0" max="1" step="0.001" aria-valuetext="0 seconds">
</div>
<div class="time-label" aria-label="Remaining: 35 seconds" style="width: 33px; left: 415px;">-0:35</div>
</div>
</div>
</div>
</div>
</video>
css macos safari html5-video shadow-dom
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Environment:
- MacBook Pro
- MacOS High Sierra 10.13.3
- Safari 11.0.3
Long story short, I'm able to hide the fullscreen video controls in Chrome and Firefox, but not Safari. I thought the below CSS snippet would work for both Chrome and Safari, but I think maybe it doesn't because Safari's shadow DOM doesn't have "-webkit-media-controls".
::-webkit-media-controls {
display:none !important;
}
Here's the video tag with shadow DOM (.media-controls-container) shown in Safari dev tools. I can hide the controls by editing the user agent stylesheet in the dev tools, but I can't seem to do it with code. Any ideas on how to hide the controls?
<video autoplay="" style="width:711px; height:400px;" width="711px" height="400px" src="blob:https://localhost/...">
<div class="media-controls-container">
<div pseudo="-webkit-media-text-track-container" class="visible-controls-bar" style="display: none;"></div>
<div class="media-controls mac fullscreen fade-in uses-ltr-user-interface-layout-direction" style="width: 1440px; height: 419px;">
<div role="group" class="controls-bar bottom" style="transform: translate(53px, 52px);">
<div class="background-tint">
<div class="blur"></div>
<div class="tint"></div>
</div>
<div class="buttons-container left" style="width: 118px;">
<button class="volume-down bar" aria-label="Volume Down" style="width: 12px; height: 12px; left: 12px;">
<picture style="width: 12px; height: 12px; -webkit-mask-image: ;"></picture>
</button>
<div class="slider volume" style="height: 16px; width: 60px; left: 30px;">
<div class="custom-slider">
<div class="track fill"></div>
<div class="primary fill" style="width: 55.5px;"></div>
<div class="secondary fill" style="left: 55.5px; right: 100%;"></div>
<div class="knob" style="left: 55.5px;"></div>
</div>
<input type="range" min="0" max="1" step="0.001">
</div>
<button class="volume-up bar" aria-label="Volume Up" style="width: 22px; height: 15px; left: 96px;">
<picture style="width: 22px; height: 15px; -webkit-mask-image: ;"></picture>
</button>
</div>
<div class="buttons-container center" style="width: 178px;">
<button class="rewind bar" aria-label="Rewind" style="width: 24px; height: 16px; left: 27px;">
<picture style="width: 24px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
<button class="play-pause bar paused" aria-label="Play" style="width: 22px; height: 26px; left: 78px;">
<picture style="width: 22px; height: 26px; -webkit-mask-image: ;"></picture>
</button>
<button class="forward bar" aria-label="Forward" style="width: 24px; height: 16px; left: 127px;">
<picture style="width: 24px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
</div>
<div class="buttons-container right" style="width: 83px;">
<button class="pip bar" aria-label="Enter Picture in Picture" style="width: 19px; height: 16px; left: 12px;">
<picture style="width: 19px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
<button class="fullscreen bar" aria-label="Exit Full Screen" style="width: 16px; height: 16px; left: 55px;">
<picture style="width: 16px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
</div>
<div class="time-control" style="width: 448px;">
<div class="time-label" aria-label="Elapsed: 0 seconds" style="width: 27px;">0:00</div>
<div class="slider scrubber" style="height: 16px; left: 32px; width: 378px;">
<div class="custom-slider">
<div class="track fill"></div>
<div class="primary fill" style="width: 4.5px;"></div>
<div class="secondary fill" style="left: 4.5px; right: 12.860977327673195%;"></div>
<div class="knob" style="left: 4.5px;"></div>
</div>
<input type="range" min="0" max="1" step="0.001" aria-valuetext="0 seconds">
</div>
<div class="time-label" aria-label="Remaining: 35 seconds" style="width: 33px; left: 415px;">-0:35</div>
</div>
</div>
</div>
</div>
</video>
css macos safari html5-video shadow-dom
Environment:
- MacBook Pro
- MacOS High Sierra 10.13.3
- Safari 11.0.3
Long story short, I'm able to hide the fullscreen video controls in Chrome and Firefox, but not Safari. I thought the below CSS snippet would work for both Chrome and Safari, but I think maybe it doesn't because Safari's shadow DOM doesn't have "-webkit-media-controls".
::-webkit-media-controls {
display:none !important;
}
Here's the video tag with shadow DOM (.media-controls-container) shown in Safari dev tools. I can hide the controls by editing the user agent stylesheet in the dev tools, but I can't seem to do it with code. Any ideas on how to hide the controls?
<video autoplay="" style="width:711px; height:400px;" width="711px" height="400px" src="blob:https://localhost/...">
<div class="media-controls-container">
<div pseudo="-webkit-media-text-track-container" class="visible-controls-bar" style="display: none;"></div>
<div class="media-controls mac fullscreen fade-in uses-ltr-user-interface-layout-direction" style="width: 1440px; height: 419px;">
<div role="group" class="controls-bar bottom" style="transform: translate(53px, 52px);">
<div class="background-tint">
<div class="blur"></div>
<div class="tint"></div>
</div>
<div class="buttons-container left" style="width: 118px;">
<button class="volume-down bar" aria-label="Volume Down" style="width: 12px; height: 12px; left: 12px;">
<picture style="width: 12px; height: 12px; -webkit-mask-image: ;"></picture>
</button>
<div class="slider volume" style="height: 16px; width: 60px; left: 30px;">
<div class="custom-slider">
<div class="track fill"></div>
<div class="primary fill" style="width: 55.5px;"></div>
<div class="secondary fill" style="left: 55.5px; right: 100%;"></div>
<div class="knob" style="left: 55.5px;"></div>
</div>
<input type="range" min="0" max="1" step="0.001">
</div>
<button class="volume-up bar" aria-label="Volume Up" style="width: 22px; height: 15px; left: 96px;">
<picture style="width: 22px; height: 15px; -webkit-mask-image: ;"></picture>
</button>
</div>
<div class="buttons-container center" style="width: 178px;">
<button class="rewind bar" aria-label="Rewind" style="width: 24px; height: 16px; left: 27px;">
<picture style="width: 24px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
<button class="play-pause bar paused" aria-label="Play" style="width: 22px; height: 26px; left: 78px;">
<picture style="width: 22px; height: 26px; -webkit-mask-image: ;"></picture>
</button>
<button class="forward bar" aria-label="Forward" style="width: 24px; height: 16px; left: 127px;">
<picture style="width: 24px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
</div>
<div class="buttons-container right" style="width: 83px;">
<button class="pip bar" aria-label="Enter Picture in Picture" style="width: 19px; height: 16px; left: 12px;">
<picture style="width: 19px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
<button class="fullscreen bar" aria-label="Exit Full Screen" style="width: 16px; height: 16px; left: 55px;">
<picture style="width: 16px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
</div>
<div class="time-control" style="width: 448px;">
<div class="time-label" aria-label="Elapsed: 0 seconds" style="width: 27px;">0:00</div>
<div class="slider scrubber" style="height: 16px; left: 32px; width: 378px;">
<div class="custom-slider">
<div class="track fill"></div>
<div class="primary fill" style="width: 4.5px;"></div>
<div class="secondary fill" style="left: 4.5px; right: 12.860977327673195%;"></div>
<div class="knob" style="left: 4.5px;"></div>
</div>
<input type="range" min="0" max="1" step="0.001" aria-valuetext="0 seconds">
</div>
<div class="time-label" aria-label="Remaining: 35 seconds" style="width: 33px; left: 415px;">-0:35</div>
</div>
</div>
</div>
</div>
</video>
::-webkit-media-controls {
display:none !important;
}
::-webkit-media-controls {
display:none !important;
}
<video autoplay="" style="width:711px; height:400px;" width="711px" height="400px" src="blob:https://localhost/...">
<div class="media-controls-container">
<div pseudo="-webkit-media-text-track-container" class="visible-controls-bar" style="display: none;"></div>
<div class="media-controls mac fullscreen fade-in uses-ltr-user-interface-layout-direction" style="width: 1440px; height: 419px;">
<div role="group" class="controls-bar bottom" style="transform: translate(53px, 52px);">
<div class="background-tint">
<div class="blur"></div>
<div class="tint"></div>
</div>
<div class="buttons-container left" style="width: 118px;">
<button class="volume-down bar" aria-label="Volume Down" style="width: 12px; height: 12px; left: 12px;">
<picture style="width: 12px; height: 12px; -webkit-mask-image: ;"></picture>
</button>
<div class="slider volume" style="height: 16px; width: 60px; left: 30px;">
<div class="custom-slider">
<div class="track fill"></div>
<div class="primary fill" style="width: 55.5px;"></div>
<div class="secondary fill" style="left: 55.5px; right: 100%;"></div>
<div class="knob" style="left: 55.5px;"></div>
</div>
<input type="range" min="0" max="1" step="0.001">
</div>
<button class="volume-up bar" aria-label="Volume Up" style="width: 22px; height: 15px; left: 96px;">
<picture style="width: 22px; height: 15px; -webkit-mask-image: ;"></picture>
</button>
</div>
<div class="buttons-container center" style="width: 178px;">
<button class="rewind bar" aria-label="Rewind" style="width: 24px; height: 16px; left: 27px;">
<picture style="width: 24px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
<button class="play-pause bar paused" aria-label="Play" style="width: 22px; height: 26px; left: 78px;">
<picture style="width: 22px; height: 26px; -webkit-mask-image: ;"></picture>
</button>
<button class="forward bar" aria-label="Forward" style="width: 24px; height: 16px; left: 127px;">
<picture style="width: 24px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
</div>
<div class="buttons-container right" style="width: 83px;">
<button class="pip bar" aria-label="Enter Picture in Picture" style="width: 19px; height: 16px; left: 12px;">
<picture style="width: 19px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
<button class="fullscreen bar" aria-label="Exit Full Screen" style="width: 16px; height: 16px; left: 55px;">
<picture style="width: 16px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
</div>
<div class="time-control" style="width: 448px;">
<div class="time-label" aria-label="Elapsed: 0 seconds" style="width: 27px;">0:00</div>
<div class="slider scrubber" style="height: 16px; left: 32px; width: 378px;">
<div class="custom-slider">
<div class="track fill"></div>
<div class="primary fill" style="width: 4.5px;"></div>
<div class="secondary fill" style="left: 4.5px; right: 12.860977327673195%;"></div>
<div class="knob" style="left: 4.5px;"></div>
</div>
<input type="range" min="0" max="1" step="0.001" aria-valuetext="0 seconds">
</div>
<div class="time-label" aria-label="Remaining: 35 seconds" style="width: 33px; left: 415px;">-0:35</div>
</div>
</div>
</div>
</div>
</video>
<video autoplay="" style="width:711px; height:400px;" width="711px" height="400px" src="blob:https://localhost/...">
<div class="media-controls-container">
<div pseudo="-webkit-media-text-track-container" class="visible-controls-bar" style="display: none;"></div>
<div class="media-controls mac fullscreen fade-in uses-ltr-user-interface-layout-direction" style="width: 1440px; height: 419px;">
<div role="group" class="controls-bar bottom" style="transform: translate(53px, 52px);">
<div class="background-tint">
<div class="blur"></div>
<div class="tint"></div>
</div>
<div class="buttons-container left" style="width: 118px;">
<button class="volume-down bar" aria-label="Volume Down" style="width: 12px; height: 12px; left: 12px;">
<picture style="width: 12px; height: 12px; -webkit-mask-image: ;"></picture>
</button>
<div class="slider volume" style="height: 16px; width: 60px; left: 30px;">
<div class="custom-slider">
<div class="track fill"></div>
<div class="primary fill" style="width: 55.5px;"></div>
<div class="secondary fill" style="left: 55.5px; right: 100%;"></div>
<div class="knob" style="left: 55.5px;"></div>
</div>
<input type="range" min="0" max="1" step="0.001">
</div>
<button class="volume-up bar" aria-label="Volume Up" style="width: 22px; height: 15px; left: 96px;">
<picture style="width: 22px; height: 15px; -webkit-mask-image: ;"></picture>
</button>
</div>
<div class="buttons-container center" style="width: 178px;">
<button class="rewind bar" aria-label="Rewind" style="width: 24px; height: 16px; left: 27px;">
<picture style="width: 24px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
<button class="play-pause bar paused" aria-label="Play" style="width: 22px; height: 26px; left: 78px;">
<picture style="width: 22px; height: 26px; -webkit-mask-image: ;"></picture>
</button>
<button class="forward bar" aria-label="Forward" style="width: 24px; height: 16px; left: 127px;">
<picture style="width: 24px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
</div>
<div class="buttons-container right" style="width: 83px;">
<button class="pip bar" aria-label="Enter Picture in Picture" style="width: 19px; height: 16px; left: 12px;">
<picture style="width: 19px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
<button class="fullscreen bar" aria-label="Exit Full Screen" style="width: 16px; height: 16px; left: 55px;">
<picture style="width: 16px; height: 16px; -webkit-mask-image: ;"></picture>
</button>
</div>
<div class="time-control" style="width: 448px;">
<div class="time-label" aria-label="Elapsed: 0 seconds" style="width: 27px;">0:00</div>
<div class="slider scrubber" style="height: 16px; left: 32px; width: 378px;">
<div class="custom-slider">
<div class="track fill"></div>
<div class="primary fill" style="width: 4.5px;"></div>
<div class="secondary fill" style="left: 4.5px; right: 12.860977327673195%;"></div>
<div class="knob" style="left: 4.5px;"></div>
</div>
<input type="range" min="0" max="1" step="0.001" aria-valuetext="0 seconds">
</div>
<div class="time-label" aria-label="Remaining: 35 seconds" style="width: 33px; left: 415px;">-0:35</div>
</div>
</div>
</div>
</div>
</video>
css macos safari html5-video shadow-dom
css macos safari html5-video shadow-dom
asked Nov 20 at 1:46
Nejuf
135110
135110
add a comment |
add a comment |
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53385091%2fhow-to-hide-fullscreen-video-controls-in-safari-11%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53385091%2fhow-to-hide-fullscreen-video-controls-in-safari-11%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown