Giter Club home page Giter Club logo

Comments (11)

the-unknown avatar the-unknown commented on July 21, 2024 1

I am having a similar issue.
My CSS:

  .high-gloss-schwarz-3mm,
  .high-gloss-schwarz-6mm {
    background: linear-gradient(
      180deg,
      rgba(50, 50, 50, 0.95) 24%,
      rgba(186, 186, 186, 1) 45%,
      rgba(226, 235, 238, 0.9514006286108193) 49%,
      rgba(50, 50, 50, 0.93) 50%,
      rgba(50, 50, 50, 0.97) 100%
    );
    color: transparent;
    background-clip: text;
    text-shadow: rgba(0, 0, 0, 0.1) 5px 5px 10px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

This is the result in Firefox (webkit-background-clip is not needed here).
[Firefox]

And this is the result of Chrome Mobile (webkit-background-clip is MANDATORY here):
[Chrome]

from dom-to-image-more.

IDisposable avatar IDisposable commented on July 21, 2024

from dom-to-image-more.

theaceofweb avatar theaceofweb commented on July 21, 2024

using chrome
this the code
Screen Shot 1442-03-17 at 3 02 42 AM
what i should get is this
31231321321312
and this what am getting
Screen Shot 1442-03-17 at 3 03 32 AM

from dom-to-image-more.

maxwellfrolov avatar maxwellfrolov commented on July 21, 2024

Same issue. I'm trying to add Linear/Radial gradients to text using webkit-background-clip: text, but receive background gradient only in Google Chrome and in SVG image

from dom-to-image-more.

glancel avatar glancel commented on July 21, 2024

Has anyone found a workaround?

from dom-to-image-more.

IDisposable avatar IDisposable commented on July 21, 2024

Seems like a bug in the Chrome getComputedStyle, even the browser's own inspector doesn't see it , notice that the specified style column shows the setting of -webkit-background-clip: text but the computed column doesn't. Might need to report a bug to Chromium

image

from dom-to-image-more.

eglifesoftware avatar eglifesoftware commented on July 21, 2024

December 2022 and I still see the same issue with -webkit-background-clip: text. Firefox works but Chrome doesn't work

from dom-to-image-more.

IDisposable avatar IDisposable commented on July 21, 2024

Seems to be working, closing.

from dom-to-image-more.

eglifesoftware avatar eglifesoftware commented on July 21, 2024

Hi @IDisposable It doesn't work on chrome

<span style="
      font-size: 72px;
      background: -webkit-linear-gradient(#eee, #333);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      -webkit-text-stroke: 1px red;
    ">  
      Test HTML
    </span>

On Chrome:
image

On Safari or Firefox it works
image

from dom-to-image-more.

eglifesoftware avatar eglifesoftware commented on July 21, 2024

I tried this solution and it seems work for me:

const _serializeToString = XMLSerializer.prototype.serializeToString;
XMLSerializer.prototype.serializeToString = function (node) {
  return _serializeToString
    .call(this, node)
    .replace(
      /background-image:/g,
      '-webkit-background-clip: text; background-image:',  // Add the -webkit-background-clip
    );
};

from dom-to-image-more.

IDisposable avatar IDisposable commented on July 21, 2024

I will get this fix included in the 3.x branch

from dom-to-image-more.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.