Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

80 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TornPaper

Creating torn edge and grunge paper effect using SVG and JavaScript.

ScreenShot

Demo

Usage

html:

<script src="https://cdn.jsdelivr.net/gh/happy358/TornPaper@v0.0.3/tornpaper.min.js"></script>
<script>
    new Tornpaper();
</script>

css:

.your-class {
   filter: url(#filter_tornpaper);
}

e.g. With background-color

.your-class {
    filter: url(#filter_tornpaper);
    background-color: pink;
}

e.g. With background-image

.your-class {
    filter: url(#filter_tornpaper);
    background: url("https://source.unsplash.com/random/") center/cover;
}

Options

new Tornpaper({
    filterName : "filter_tornpaper", // cunstom filter-id, default:"filter_tornpaper"
    seed : 1, // random seed, default:random number
    tornFrequency : 0.05, // 0=no torn edge, default:0.05
    tornScale : 10,
    grungeFrequency : 0.03, // 0=no grunge texture, default:0.03
    grungeScale : 3
});

References

Thanks!

About

No description or website provided.

Topics

Resources

Stars

19 stars

Watchers

2 watching

Forks

Releases

Packages

Contributors

Languages