Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ WebGlass is a simple yet powerful tool allowing the creation of glass-like objec

![Example](example.png)

[Demo Webpage]
[Demo Webpage](https://jemcats.software/github_pages/WebGlass/)

## Features
WebGlass has a large feature set allowing you to customize your glass how you like it.
Expand Down
5 changes: 2 additions & 3 deletions WebGlass.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ const WebGlass = {
el.style.width = this.width + "px";
el.style.borderRadius = this.radius + "px";
}
this.el.style.transition = "backdrop-filter 1s cubic-bezier(1, 0, 0, 1)"
},

// --- Applys glassy filters ---
Expand All @@ -136,10 +135,10 @@ const WebGlass = {
} else {
if (nonchrome || this.isLiquid == false) {
el_style.backdropFilter =
`blur(${this.blur / 2}px) blur(${this.blur}px) brightness(1.1) saturate(1.5)`;
`blur(${this.blur}px) brightness(1.1) saturate(1.5)`;
} else {
el_style.backdropFilter =
`blur(${this.blur / 2}px) url('${WebGlass.getDisplacementFilter({
`url('${WebGlass.getDisplacementFilter({
height: this.height,
width: this.width,
radius: this.radius,
Expand Down
7 changes: 7 additions & 0 deletions release_descriptions/v1.0.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# v1.0.1
This release brings bug fixes including:
- Removed unused transition CSS atribute.
- Fixed some compatiblility issues with WebKit.
- Added demo page link to the README.

**Full Changelog**: https://github.com/JEMcats-Software/WebGlass/compare/v1.0.0...v1.0.1