Skip to content

Commit 4b23e62

Browse files
committed
v1.0.1
1 parent f942c7d commit 4b23e62

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ WebGlass is a simple yet powerful tool allowing the creation of glass-like objec
33

44
![Example](example.png)
55

6-
[Demo Webpage]
6+
[Demo Webpage](https://jemcats.software/github_pages/WebGlass/)
77

88
## Features
99
WebGlass has a large feature set allowing you to customize your glass how you like it.

WebGlass.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ const WebGlass = {
114114
el.style.width = this.width + "px";
115115
el.style.borderRadius = this.radius + "px";
116116
}
117-
this.el.style.transition = "backdrop-filter 1s cubic-bezier(1, 0, 0, 1)"
118117
},
119118

120119
// --- Applys glassy filters ---
@@ -136,10 +135,10 @@ const WebGlass = {
136135
} else {
137136
if (nonchrome || this.isLiquid == false) {
138137
el_style.backdropFilter =
139-
`blur(${this.blur / 2}px) blur(${this.blur}px) brightness(1.1) saturate(1.5)`;
138+
`blur(${this.blur}px) brightness(1.1) saturate(1.5)`;
140139
} else {
141140
el_style.backdropFilter =
142-
`blur(${this.blur / 2}px) url('${WebGlass.getDisplacementFilter({
141+
`url('${WebGlass.getDisplacementFilter({
143142
height: this.height,
144143
width: this.width,
145144
radius: this.radius,

release_descriptions/v1.0.1.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# v1.0.1
2+
This release brings bug fixes including:
3+
- Removed unused transition CSS atribute.
4+
- Fixed some compatiblility issues with WebKit.
5+
- Added demo page link to the README.
6+
7+
**Full Changelog**: https://github.com/JEMcats-Software/WebGlass/compare/v1.0.0...v1.0.1

0 commit comments

Comments
 (0)