Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
rocksdanister committed Apr 8, 2023
1 parent 1127692 commit f955c86
Show file tree
Hide file tree
Showing 14 changed files with 496 additions and 1 deletion.
18 changes: 18 additions & 0 deletions License.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Snow by Rocksdanister licensed under
Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.
Source:
https://github.com/rocksdanister/snow

**********************************************************************************************

https://www.shadertoy.com/view/ldsGDn
Copyright (c) 2013 Andrew Baldwin (twitter: baldand, www: http://thndl.com)
License = Attribution-NonCommercial-ShareAlike (http://creativecommons.org/licenses/by-nc-sa/3.0/deed.en_US)

**********************************************************************************************

Mountain Surrounded With Fog by Stephan Seeber from Pexels
https://www.pexels.com/photo/mountain-surrounded-with-fog-1772973/

icon by Icons8
https://icons8.com
14 changes: 14 additions & 0 deletions LivelyInfo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"AppVersion": "2.0.6.1",
"Title": "Snow",
"Thumbnail": "thumbnail.jpg",
"Preview": "preview.gif",
"Desc": "Customisable snow particles.",
"Author": "rocksdanister",
"License": "See License.txt",
"Contact": "https://github.com/rocksdanister/snow",
"Type": 1,
"FileName": "index.html",
"Arguments": null,
"IsAbsolutePath": false
}
76 changes: 76 additions & 0 deletions LivelyProperties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
{
"layers": {
"max": 200,
"min": 0,
"text": "Layers",
"type": "slider",
"value": 50
},
"depth": {
"max": 10,
"min": 0,
"step": 0.01,
"text": "Depth",
"type": "slider",
"value": 0.5
},
"width": {
"max": 10,
"min": 0,
"step": 0.01,
"text": "Width",
"type": "slider",
"value": 0.3
},
"speed": {
"max": 10,
"min": 0,
"step": 0.01,
"text": "Speed",
"type": "slider",
"value": 0.6
},
"mediaSelect": {
"type": "folderDropdown",
"value": "image.jpg",
"text": "Background (.jpg, .png, .webm)",
"filter": "*.jpg|*.jpeg|*.png|*.webm",
"folder": "media"
},
"mediaScaling": {
"type": "dropdown",
"value": 1,
"text": "Scaling",
"items": ["Stretch", "Fill"]
},
"blurIntensity": {
"max": 1,
"min": 0,
"step": 0.01,
"text": "Blur Intensity",
"type": "slider",
"value": 0.3
},
"parallaxIntensity": {
"max": 5,
"min": 0,
"text": "Parallax",
"type": "slider",
"value": 1
},
"postProcessingChk": {
"type": "checkbox",
"value": true,
"text": "Post Processing"
},
"fpsLock": {
"type": "checkbox",
"value": true,
"text": "30FPS Lock"
},
"debug": {
"type": "checkbox",
"value": false,
"text": "Debug"
}
}
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,16 @@
# snow
# Snowy Window
<img src="preview.gif" width="300" />

Animated Snowy Window wallpaper for [Lively Wallpaper](https://github.com/rocksdanister/lively)

[Download](https://github.com/rocksdanister/snow/releases)

[Live Demo](https://www.rocksdanister.com/snow)

#### Features
- Adjustable snow particles.
- Custom image or video background.
- Background color temperature (post processing.)
- Background mouse parallax.
- Background blur.
- Framerate control.
Binary file added favicon.ico
Binary file not shown.
27 changes: 27 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta property="og:image" content="./social.jpg" />
<title>Snowy Window</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
</head>
<style>
body {
background-color: #000;
margin: 0px;
overflow: hidden;
}
#container {
transform: scale(1.09);
}
</style>
<body>
<div id="container"></div>
<input id="filePicker" type="file" accept=".jpg, .jpeg, .png, .mp4, .webm" style="visibility: hidden" />

<script src="js/three.min.js"></script>
<script src="js/dat.gui.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>
13 changes: 13 additions & 0 deletions js/dat.gui.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit f955c86

Please sign in to comment.