-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
186 lines (173 loc) · 11.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<html lang="en" data-reactroot="">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>WinDynamicDesktop</title>
<link rel="icon" type="image/x-icon" href="https://cdn.statically.io/gh/t1m0thyj/WinDynamicDesktop/189f4bb0/src/resources/WinDynamicDesktop.ico">
<link rel="icon" type="image/png" href="https://cdn.statically.io/gh/t1m0thyj/WinDynamicDesktop/189f4bb0/imgs/choco_icon.png">
<style>
#ReactMarkdown pre {
background: #1e1e1e;
padding: 0;
margin: 0;
border-radius: 10px;
}
.image-slant-right {
/* width: 40%; */
margin-bottom: 0px;
-webkit-transform: perspective(1500px) rotateY(15deg);
-moz-transform: perspective(1500px) rotateY(-15deg);
-ms-transform: perspective(1500px) rotateY(-15deg);
transform: perspective(1500px) rotateY(-15deg);
transition: transform 1s;
}
.image-slant-left {
/* width: 40%; */
margin-bottom: 0px;
-webkit-transform: perspective(1500px) rotateY(15deg);
-moz-transform: perspective(1500px) rotateY(15deg);
-ms-transform: perspective(1500px) rotateY(15deg);
transform: perspective(1500px) rotateY(15deg);
box-shadow: 1px 25px 20px #c6ced8;
transition: transform 1s;
}
.image-slant-right:hover {
-webkit-transform: perspective(1500px) rotateY(-5deg);
-moz-transform: perspective(1500px) rotateY(-5deg);
-ms-transform: perspective(1500px) rotateY(-5deg);
transform: perspective(1500px) rotateY(-5deg);
}
.image-slant-left:hover {
-webkit-transform: perspective(1500px) rotateY(5deg);
-moz-transform: perspective(1500px) rotateY(5deg);
-ms-transform: perspective(1500px) rotateY(5deg);
transform: perspective(1500px) rotateY(5deg);
}
@media (max-width: 1024px) {
.image-slant-left,
.image-slant-right {
-webkit-transform: perspective(1500px) rotateY(0deg);
-moz-transform: perspective(1500px) rotateY(0deg);
-ms-transform: perspective(1500px) rotateY(0deg);
transform: perspective(1500px) rotateY(0deg);
}
}
.prose {
max-width: 60rem !important;
}
img.inline {
margin: 0 !important;
}
</style>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet" />
<link rel="stylesheet" href="https://unpkg.com/@tailwindcss/typography@0.2.x/dist/typography.min.css" />
</head>
<body>
<main>
<div class="animate">
<div class="bg-white">
<header class="bg-green-700">
<nav class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8" aria-label="Top">
<div class="w-full py-3 flex items-center justify-between lg:border-none">
<div class="flex items-center"><span class="text-sm sm:text-base text-white hover:text-blue-50 font-bold tracking-wide">WinDynamicDesktop</span>
<div class="hidden ml-10 space-x-8 lg:block"></div>
</div>
<div class="ml-10 space-x-4"><a href="https://github.com/t1m0thyj/WinDynamicDesktop" class="inline-block bg-white py-2 px-4 border text-center border-transparent rounded-md text-xs sm:text-base font-medium text-blue-600 hover:bg-blue-50">View on GitHub</a></div>
</div>
</nav>
</header>
<div class="pt-8 bg-gray-800">
<div class="mx-auto max-w-7xl px-4 sm:mt-12 sm:px-6">
<div class="text-center">
<h1 class="text-4xl tracking-tight font-extrabold text-gray-200 sm:text-5xl md:text-6xl"><span class="block">Port of macOS Mojave Dynamic Desktop feature to Windows 10 and 11</span></h1>
<p class="max-w-md mt-8 mx-auto text-base text-gray-400 sm:text-lg mt-2 md:text-xl md:max-w-3xl">Available on <a class="text-blue-500 underline" href="https://github.com/t1m0thyj/WinDynamicDesktop/releases">GitHub</a> and the <a class="text-blue-500 underline" href="https://www.microsoft.com/store/apps/9nm8n7dq3z5f?cid=storebadge&ocid=badge">Microsoft Store</a></p>
</div>
</div>
<div class="relative mt-16">
<div class="absolute inset-0 flex flex-col" aria-hidden="true">
<div class="flex-1"></div>
<div class="flex-1 w-full bg-white"></div>
</div>
<div class="max-w-7xl mx-auto px-4 sm:px-6"><img class="relative rounded-lg shadow-lg mx-auto" src="https://cdn.statically.io/gh/t1m0thyj/WDD-website/461a09c/images/WDD-timelapse.webp" data-aos="zoom-out" data-aos-offset="200" data-aos-duration="1000" /></div>
</div>
</div>
<div class="relative py-8 bg-white overflow-hidden" data-aos="fade-up" data-aos-offset="50" data-aos-duration="500" data-aos-delay="200">
<div class="relative px-4 sm:px-6 lg:px-8">
<div class="mt-6 prose prose-indigo prose-lg text-gray-500 mx-auto ReactMarkdown" id="ReactMarkdown">
<h2><img class="inline" src="https://github.com/t1m0thyj/WinDynamicDesktop/blob/main/uwp/Images/Square44x44Logo.scale-200.png?raw=true">WinDynamicDesktop</h2>
<p>Port of macOS Mojave Dynamic Desktop feature to Windows 10 and 11. Available on GitHub and the Microsoft Store.</p>
<p><a href="https://github.com/t1m0thyj/WinDynamicDesktop/releases/latest"><img class="inline" src="https://github.com/t1m0thyj/WinDynamicDesktop/blob/main/images/download_github.png?raw=true" alt="GitHub download" width="142"></a>
<a href="//www.microsoft.com/store/apps/9nm8n7dq3z5f?cid=storebadge&ocid=badge"><img class="inline" src="https://developer.microsoft.com/store/badges/images/English_get-it-from-MS.png" alt="Microsoft Store" width="142"/></a></p>
<h3>Themes</h3>
<p>Pick from bundled macOS themes, browse hundreds of themes <a href="https://windd.info/themes/">available online</a>, or <a href="https://github.com/t1m0thyj/WinDynamicDesktop/wiki/Creating-custom-themes">create your own</a></p>
<p><img alt="Screenshot of Select Theme window" src="https://github.com/t1m0thyj/WinDynamicDesktop/blob/main/images/select_theme.png?raw=true" /></p>
<h3>Schedule</h3>
<p>Choose a schedule for cycling through wallpaper images over 24 hours</p>
<p><img alt="Screenshot of Configure Timing window" src="https://github.com/t1m0thyj/WinDynamicDesktop/blob/main/images/configure_schedule.png?raw=true" /></p>
<h3>Scripts</h3>
<p>Extend the behavior of WinDynamicDesktop with PowerShell scripts, and share them with other users <a href="https://github.com/t1m0thyj/WDD-scripts#readme">here</a></p>
<h3>Supported Devices</h3>
<p>WinDynamicDesktop is developed primarily for Windows 11, but should run on any device with Windows 7 or newer. Windows Insider builds are not officially supported.</p>
<h3>Resources</h3>
<ul>
<li><a href="https://github.com/t1m0thyj/WinDynamicDesktop/wiki">Get Help</a></li>
<li><a href="https://poeditor.com/join/project/DEgfVpyuiK">Translate on POEditor</a></li>
<li><a href="https://ddw-theme-creator.vercel.app/">.ddw Theme Creator</a> (thanks @gdstewart)</li>
</ul>
<h3>Known Issues</h3>
<ul>
<li><a href="https://github.com/t1m0thyj/WinDynamicDesktop/wiki/Known-issues#wallpaper-fit-not-saved-with-multiple-monitors">Wallpaper fit not remembered in Microsoft Store app</a></li>
<li><a href="https://github.com/t1m0thyj/WinDynamicDesktop/wiki/Known-issues#wallpaper-gets-stuck-and-wont-update">Wallpaper gets stuck and won't update</a></li>
</ul>
<h3>Limitations</h3>
<ul>
<li><a href="https://github.com/t1m0thyj/WinDynamicDesktop/issues/299">Can't show separate images on multiple virtual desktops</a></li>
</ul>
<h3>Disclaimers</h3>
<ul>
<li>Wallpaper images are not owned by me, they belong to Apple</li>
<li><a href="https://locationiq.org/">LocationIQ API</a> is used when your enter your location, to convert it to latitude and longitude</li>
<li>Microsoft Store app uses the Windows location API if permission is granted</li>
<li>App icon made by <a href="https://www.flaticon.com/authors/roundicons">Roundicons</a> from <a href="https://www.flaticon.com/">flaticon.com</a> and is licensed by <a href="http://creativecommons.org/licenses/by/3.0/">CC 3.0 BY</a></li>
</ul>
</div>
</div>
</div>
<footer class="bg-white">
<div class="max-w-7xl mx-auto py-12 px-4 overflow-hidden sm:px-6 lg:px-8">
<nav class="-mx-5 -my-2 flex flex-wrap justify-center" aria-label="Footer"></nav>
<div class="mt-8 flex justify-center space-x-6">
<a href="https://paypal.me/t1m0thyj"><img class="inline" src="./images/paypal_donate.gif" alt="Donate with PayPal"></a>
</div>
<p class="mt-8 text-center text-base text-gray-400">Made with ♥ by <a class="underline" href="https://github.com/t1m0thyj">t1m0thyj</a></p>
</div>
</footer>
</div>
</div>
</main>
</body>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script type="text/javascript">
AOS.init({
once: true
});
</script>
<script type="text/javascript">
window.addEventListener('load', (event) => {
document.querySelectorAll("[data-js='copy-code']").forEach(code =>
code.addEventListener("click", (event) => {
const content = event.target.closest('div').textContent;
navigator.clipboard.writeText(content);
})
)
document.querySelectorAll("[data-js='copy-button']").forEach(button =>
button.addEventListener("click", (event) => {
const content = event.target.closest("[data-js='copy-button-value']").textContent;
navigator.clipboard.writeText(content);
})
)
});
</script>
</html>