GithubHelp home page GithubHelp logo

Comments (1)

AlfredJKwack avatar AlfredJKwack commented on June 2, 2024

Yes it can.

When you run AD, it sets a property data-ab-color on each of the images. This property contains an rgb(x,y,z) value that you need. From there you can calculate the brightness and set the text to the appropriate color value.

Below is a very rough (read untested) implementation to give you an idea of what it would take.

         // Assume we have two text colors: light and dark
          var textColors = {
              normalizedTextColors:  {
                light:      "#fff",
                dark:       "#000"
              }
          }

         // Helper function to get brightness
          var getYIQ = function(color){
            var rgb = color.match(/\d+/g);
            return ((rgb[0]*299)+(rgb[1]*587)+(rgb[2]*114))/1000;
          };

         // Helper function to decide whether it's light or dark
          var getNormalizedTextColor = function (color){
            return getYIQ(color) >= 128 ? textColors.normalizedTextColors.dark : textColors.normalizedTextColors.light;
          };

         // Set the color of $myEl to the color contained 
         // in the data-ab-color property of $theImg on which AB ran.
          $myEl.css({ color: getNormalizedTextColor($(theImg).attr('data-ab-color')) });

You could of course use an entirely different library... something like Background Check developed by Kenneth Cachia

from jquery.adaptive-backgrounds.js.

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.