Git Product home page Git Product logo

Comments (3)

dfreedm avatar dfreedm commented on June 21, 2024

I'm not confident that the complexity required to parse CSS will be worth the payoff, particularly if trying to capture any dynamism.
Currently, I emit a stylesheet that will match the touch-action attribute usage to the spec property values like so:

[touch-action="none"] {
  touch-action: none;
  -ms-touch-action: none;
}

This seems to have the most bang for my buck. As for JSCSSP in particular, it's almost 3x the size of PointerEvents, and requires me to feed it stylesheet's i've XHR'd, which may have CORS issues and other nasties.

from pep.

RByers avatar RByers commented on June 21, 2024

Yeah, understood.
Another option to consider - CSS variables are designed to be useful for CSS polyfills (with 'var-' as sort of an author prefix) - see http://dev.w3.org/csswg/css-variables/#using. Supporting a 'var-touch-action' CSS property on browsers that support CSS variables could be valuable - eg. to allow a site to control the touch action of an entire class of elements at the same time (see this recent thread for discussion on why CSS was chosen over HTML attributes: http://lists.w3.org/Archives/Public/public-pointer-events/2013AprJun/0201.html)

from pep.

dfreedm avatar dfreedm commented on June 21, 2024

That's a good idea, but I'm not aware of many browsers having variable support, or of any browsers supporting the CSSOM JS variable interface: http://dev.w3.org/csswg/css-variables/#the-CSSVariablesMap-interface.

There's no other way to access variables except via style attribute, but then I'm back to attribute watching again.

from pep.

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.