Safari iOS bug with 'mix-blend-mode' (particularly on iPad pro 10.5)Positioning from fixed to staticDoes CSS mix-blend-mode work with transform?mix-blend-mode issues in ChromeMix Blend Mode BleedMix-Blend-Mode DifferenceHow to fix Safari mix-blend-mode: color-dodge bug?Mix-blend-mode breaks when out of viewportArray state will be cached in iOS 12 Safari. Is it a bug or feature?Animating scale on circle with centered text on top, with mix-blend-mode
Where are the "shires" in the UK?
Are pressure-treated posts that have been submerged for a few days ruined?
Did we get closer to another plane than we were supposed to, or was the pilot just protecting our delicate sensibilities?
When two pilots are required for a private aircraft, is it a requirement for the PIC to be ATPL?
Emotional immaturity of comic-book version of superhero Shazam
How can internet speed be 10 times slower without a router than when using a router?
What is a smasher?
Why do people keep telling me that I am a bad photographer?
Are Finitely generated modules over a ring also finitely generated over a subring containing the identity?
What if the end-user didn't have the required library?
Floor of Riemann zeta function
In Russian, how do you idiomatically express the idea of the figurative "overnight"?
Why are UK Bank Holidays on Mondays?
US born but as a child of foreign diplomat
Understanding trademark infringements in a world where many dictionary words are trademarks?
Can you Ready a Bard spell to release it after using Battle Magic?
Should I decline this job offer that requires relocating to an area with high cost of living?
Is there an idiom that support the idea that "inflation is bad"?
Word for Food that's Gone 'Bad', but is Still Edible?
My advisor talks about me to his colleague
Wrong answer from DSolve when solving a differential equation
What exactly are the `size issues' preventing formation of presheaves being a left adjoint to some forgetful functor?
Introducing Gladys, an intrepid globetrotter
Adjacent DEM color matching in QGIS
Safari iOS bug with 'mix-blend-mode' (particularly on iPad pro 10.5)
Positioning from fixed to staticDoes CSS mix-blend-mode work with transform?mix-blend-mode issues in ChromeMix Blend Mode BleedMix-Blend-Mode DifferenceHow to fix Safari mix-blend-mode: color-dodge bug?Mix-blend-mode breaks when out of viewportArray state will be cached in iOS 12 Safari. Is it a bug or feature?Animating scale on circle with centered text on top, with mix-blend-mode
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I'm encountering a strange issue on my iPad where I have an svg with mix-blend-mode: screen
to colour text like so:
CSS:
img
top: 0;
right: 0;
bottom: 0;
width: 50vw;
height: 100vh;
position: fixed;
mix-blend-mode: screen;
z-index: 100;
#backing
background: white;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
HTML:
<img src="https://upload.wikimedia.org/wikipedia/commons/2/25/Red.svg">
<div id="backing"></div>
<p>...content...</p>
See JSBIN here: https://jsbin.com/kunofal
On load, everything looks fine, but then on scroll, as soon as the top chrome shrinks, the image becomes solid: https://imgur.com/a/I62FrFX
Oddly enough, it also seems to happen only if more than one tab is open. It doesn't seem to be problematic on desktop or phone, only my 10.5" iPad Pro, on 12.1.4 (16D57), and only in portrait mode (oddly enough it works in landscape).
I've tried adding transform: translateZ(0);
to no avail as per some recommendations about other mix-blend-mode bugs.
Is this a bug or am I doing something wrong?
ios css safari mix-blend-mode
add a comment |
I'm encountering a strange issue on my iPad where I have an svg with mix-blend-mode: screen
to colour text like so:
CSS:
img
top: 0;
right: 0;
bottom: 0;
width: 50vw;
height: 100vh;
position: fixed;
mix-blend-mode: screen;
z-index: 100;
#backing
background: white;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
HTML:
<img src="https://upload.wikimedia.org/wikipedia/commons/2/25/Red.svg">
<div id="backing"></div>
<p>...content...</p>
See JSBIN here: https://jsbin.com/kunofal
On load, everything looks fine, but then on scroll, as soon as the top chrome shrinks, the image becomes solid: https://imgur.com/a/I62FrFX
Oddly enough, it also seems to happen only if more than one tab is open. It doesn't seem to be problematic on desktop or phone, only my 10.5" iPad Pro, on 12.1.4 (16D57), and only in portrait mode (oddly enough it works in landscape).
I've tried adding transform: translateZ(0);
to no avail as per some recommendations about other mix-blend-mode bugs.
Is this a bug or am I doing something wrong?
ios css safari mix-blend-mode
I tested this version of the iPad Pro from the XCode Simulator, but it wasn't breaking there.
– Andy Hoffman
Mar 22 at 23:20
add a comment |
I'm encountering a strange issue on my iPad where I have an svg with mix-blend-mode: screen
to colour text like so:
CSS:
img
top: 0;
right: 0;
bottom: 0;
width: 50vw;
height: 100vh;
position: fixed;
mix-blend-mode: screen;
z-index: 100;
#backing
background: white;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
HTML:
<img src="https://upload.wikimedia.org/wikipedia/commons/2/25/Red.svg">
<div id="backing"></div>
<p>...content...</p>
See JSBIN here: https://jsbin.com/kunofal
On load, everything looks fine, but then on scroll, as soon as the top chrome shrinks, the image becomes solid: https://imgur.com/a/I62FrFX
Oddly enough, it also seems to happen only if more than one tab is open. It doesn't seem to be problematic on desktop or phone, only my 10.5" iPad Pro, on 12.1.4 (16D57), and only in portrait mode (oddly enough it works in landscape).
I've tried adding transform: translateZ(0);
to no avail as per some recommendations about other mix-blend-mode bugs.
Is this a bug or am I doing something wrong?
ios css safari mix-blend-mode
I'm encountering a strange issue on my iPad where I have an svg with mix-blend-mode: screen
to colour text like so:
CSS:
img
top: 0;
right: 0;
bottom: 0;
width: 50vw;
height: 100vh;
position: fixed;
mix-blend-mode: screen;
z-index: 100;
#backing
background: white;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
HTML:
<img src="https://upload.wikimedia.org/wikipedia/commons/2/25/Red.svg">
<div id="backing"></div>
<p>...content...</p>
See JSBIN here: https://jsbin.com/kunofal
On load, everything looks fine, but then on scroll, as soon as the top chrome shrinks, the image becomes solid: https://imgur.com/a/I62FrFX
Oddly enough, it also seems to happen only if more than one tab is open. It doesn't seem to be problematic on desktop or phone, only my 10.5" iPad Pro, on 12.1.4 (16D57), and only in portrait mode (oddly enough it works in landscape).
I've tried adding transform: translateZ(0);
to no avail as per some recommendations about other mix-blend-mode bugs.
Is this a bug or am I doing something wrong?
ios css safari mix-blend-mode
ios css safari mix-blend-mode
asked Mar 22 at 23:04
wafflwaffl
1,82344588
1,82344588
I tested this version of the iPad Pro from the XCode Simulator, but it wasn't breaking there.
– Andy Hoffman
Mar 22 at 23:20
add a comment |
I tested this version of the iPad Pro from the XCode Simulator, but it wasn't breaking there.
– Andy Hoffman
Mar 22 at 23:20
I tested this version of the iPad Pro from the XCode Simulator, but it wasn't breaking there.
– Andy Hoffman
Mar 22 at 23:20
I tested this version of the iPad Pro from the XCode Simulator, but it wasn't breaking there.
– Andy Hoffman
Mar 22 at 23:20
add a comment |
0
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',
autoActivateHeartbeat: false,
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%2f55308865%2fsafari-ios-bug-with-mix-blend-mode-particularly-on-ipad-pro-10-5%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
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.
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%2f55308865%2fsafari-ios-bug-with-mix-blend-mode-particularly-on-ipad-pro-10-5%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
I tested this version of the iPad Pro from the XCode Simulator, but it wasn't breaking there.
– Andy Hoffman
Mar 22 at 23:20