color-of-time

1.2.1 • Public • Published

Synopsis

See a demo here

Installation

Bower
Install
bower install color-of-time --save
Add javascript files
<script src="bower_components/color-of-time/dist/color-of-time.min.js"></script>
NPM
Install
npm install color-of-time --save
Add javascript files
<script src="node_modules/color-of-time/dist/color-of-time.min.js"></script>

Code Example

Inject
angular.module('app', [
    'color-of-time'
]);
Make background color change based on the time
<body data-ng-app="color-of-time">
    <div color-of-time>
        <!-- More code -->
     </div>
</body>
Make font change color based on time
<color-of-time properties="'color'">
    Color Of Time
</color-of-time>
Multiple properties
<color-of-time properties="'fill,color'">
    <i class="icon github"/>
    <p>
        SEE THE CODE!
    </p>
</div>
As an attribute
<div class="color"
     color-of-time
     increment="24"
     skip="60*60*1"
     properties="'color'">
    Color Of Time
</div>

Options

  • increment (Default: 1): The number of seconds to skip ahead.
  • rate (Default: 1000): Check every X number of milli seconds.
  • skip (Default: 0): The number of seconds to skip ahead.
  • properties (Default: 'background-color'): The css attributes to apply the color too (separate multiple properties with a comma).

Tests

I know, I know. I will get to it eventually.

Contributors

I currently maintain this project alone, you can find more of my projects and contact me on my website. If you would like to be a contributor then please do!

License

MIT License

Copyright (c) 2018 Jeremy Quick

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Upcoming

Give me some ideas and I just may work on them!

Readme

Keywords

none

Package Sidebar

Install

npm i color-of-time

Weekly Downloads

1

Version

1.2.1

License

MIT

Unpacked Size

115 kB

Total Files

24

Last publish

Collaborators

  • jrquick