Skip to content

An Ant task that makes use of Prefixr API for converting CSS3 attributes to the corresponding vendor specific syntax

License

Notifications You must be signed in to change notification settings

jaconza/PrefixrAntTask

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 

Repository files navigation

PrefixrAntTask

Introduction

This project is the creation of an Apache Ant task for use of the Prefixr api (http://prefixr.com/). It will allow developers to make use of css3 styles and replace these with the correct prefix at build/deploy time.

It will allow for a user to set multiple filesets to be scanned for css content and call the Prefixr Api to prefix the CSS3 styles with the cross browser spesific styles.

For example a css file containing the following styles

.class {
  border-radius: 5px;

will be converted to

.class{
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

Usage

The task allows for an the user to either override the current css file or to use a suffix at the end of the file.

See the https://github.com/jaconel/PrefixrAntTask/blob/master/src/prefixr.build.xml file for example usage

About

An Ant task that makes use of Prefixr API for converting CSS3 attributes to the corresponding vendor specific syntax

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages