Skip to content

Commit f5000fa

Browse files
committed
updated features
1 parent 0972c75 commit f5000fa

7 files changed

Lines changed: 168 additions & 11 deletions

File tree

30.7 KB
Loading
37.4 KB
Loading

assets/sample1.mp4

81.5 MB
Binary file not shown.

assets/sample2.mp4

42 MB
Binary file not shown.

index.html

Lines changed: 51 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
<meta charset="UTF-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77
<title>PyClicker - Effortless Automation</title>
8-
<link rel="icon" type="image/svg"
9-
href="assets/icon.svg">
8+
<link rel="icon" type="image/svg" href="assets/icon.svg">
109
<link rel="stylesheet" href="styles.css">
1110
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
1211
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
@@ -37,8 +36,10 @@ <h1>Automate Your Repetitive Tasks</h1>
3736
<a
3837
href="https://github.com/sPROFFEs/autoclicker/releases/download/1.0/PyclickRecorder_Windows_installer.exe"><i
3938
class="fab fa-windows"></i> Windows Installer (Free)</a>
40-
<a href="https://github.com/CoreSecFrame/PyClicker/releases/download/pro/PyClicker_Pro.exe"><i class="fab fa-windows"></i> Windows Pro (License required) (depends on .NET framework)</a>
41-
<a href="https://github.com/CoreSecFrame/PyClicker/releases/download/pro/PyClicker_self.zip"><i class="fab fa-windows"></i> Windows Pro (License required) (.NET self-contained)</a>
39+
<a href="https://github.com/CoreSecFrame/PyClicker/releases/download/pro/PyClicker_Pro.exe"><i
40+
class="fab fa-windows"></i> Windows Pro (License required) (depends on .NET framework)</a>
41+
<a href="https://github.com/CoreSecFrame/PyClicker/releases/download/pro/PyClicker_self.zip"><i
42+
class="fab fa-windows"></i> Windows Pro (License required) (.NET self-contained)</a>
4243
<a href="https://github.com/sPROFFEs/autoclicker/releases/download/1.0/PyclickRecorder_Linux_installer.sh"><i
4344
class="fab fa-linux"></i> Linux Installer (Free)</a>
4445
<a href="#"><i class="fab fa-linux"></i> Linux Pro (Coming Soon)</a>
@@ -105,6 +106,38 @@ <h3>Enable & Execute</h3>
105106
</div>
106107
</section>
107108

109+
<section id="pro-features" class="pro-features">
110+
<div class="collapsible-header">
111+
<h2>Pro Features</h2>
112+
<button class="btn collapsible-btn">View Details ▾</button>
113+
</div>
114+
<div class="collapsible-content">
115+
<div class="feature-demonstration">
116+
<div class="feature-item">
117+
<h3>Demonstration Videos</h3>
118+
<div class="video-placeholder">
119+
<video width="320" height="240" controls>
120+
<source src="assets/sample1.mp4" type="video/mp4">
121+
Your browser does not support the video tag.
122+
</video>
123+
<video width="320" height="240" controls>
124+
<source src="assets/sample2.mp4" type="video/mp4">
125+
Your browser does not support the video tag.
126+
</video>
127+
</div>
128+
</div>
129+
<div class="feature-item">
130+
<h3>Scheduling Workflow</h3>
131+
<div class="workflow-placeholder">
132+
<p>Step-by-step guide on how to schedule a task with PyClicker Pro. Click images to enlarge.</p>
133+
<a href="#" data-overlay="img1-overlay"><img src="assets/Flow Designer - TestFlow-Formular.png" alt="TestFlow-Formular" width="500" height="600"></a>
134+
<a href="#" data-overlay="img2-overlay"><img src="assets/Flow Designer - WindowDetection-Test.png" alt="WindowDetection-Test" width="500" height="600"></a>
135+
</div>
136+
</div>
137+
</div>
138+
</div>
139+
</section>
140+
108141
<section id="testimonials" class="testimonials">
109142
<h2>What Our Users Say</h2>
110143
<div class="testimonial-grid">
@@ -257,6 +290,20 @@ <h2>Contact Us</h2>
257290

258291
<script src="script.js"></script>
259292

293+
<!-- Image Overlays -->
294+
<div id="img1-overlay" class="overlay image-overlay">
295+
<div class="overlay-content">
296+
<a href="#" class="close-btn">&times;</a>
297+
<img src="assets/Flow Designer - TestFlow-Formular.png" alt="TestFlow-Formular">
298+
</div>
299+
</div>
300+
<div id="img2-overlay" class="overlay image-overlay">
301+
<div class="overlay-content">
302+
<a href="#" class="close-btn">&times;</a>
303+
<img src="assets/Flow Designer - WindowDetection-Test.png" alt="WindowDetection-Test">
304+
</div>
305+
</div>
306+
260307
<!-- Overlays -->
261308
<div id="privacy-overlay" class="overlay">
262309
<div class="overlay-content">

script.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,20 @@ window.addEventListener('click', (e) => {
4646
}
4747
});
4848

49+
// Collapsible section
50+
document.querySelectorAll('.collapsible-btn').forEach(btn => {
51+
btn.addEventListener('click', () => {
52+
const content = btn.closest('.pro-features').querySelector('.collapsible-content');
53+
if (content.style.display === 'block') {
54+
content.style.display = 'none';
55+
btn.innerHTML = 'View Details ▾';
56+
} else {
57+
content.style.display = 'block';
58+
btn.innerHTML = 'Hide Details ▴';
59+
}
60+
});
61+
});
62+
4963
document.addEventListener("DOMContentLoaded", () => {
5064
// Abrir overlays genéricos por data-overlay
5165
document.querySelectorAll('[data-overlay]').forEach(link => {

styles.css

Lines changed: 103 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -156,13 +156,6 @@ section.visible {
156156
opacity: 1;
157157
transform: translateY(0);
158158
}
159-
section h2 {
160-
text-align: center;
161-
margin-bottom: 3rem;
162-
font-size: 2.5rem;
163-
color: #1e293b;
164-
}
165-
166159
/* Features */
167160
.feature-grid {
168161
display: grid;
@@ -235,6 +228,73 @@ section h2 {
235228
color: #664d00;
236229
}
237230

231+
/* Pro Features Section */
232+
.pro-features {
233+
background: #f1f5f9;
234+
}
235+
236+
.collapsible-header {
237+
display: flex;
238+
justify-content: space-between;
239+
align-items: center;
240+
margin-bottom: 2rem;
241+
}
242+
243+
.collapsible-header h2 {
244+
margin-bottom: 0;
245+
text-align: left;
246+
}
247+
248+
.collapsible-btn {
249+
background: #2563eb;
250+
color: #fff;
251+
border: none;
252+
padding: 0.8rem 1.5rem;
253+
border-radius: 8px;
254+
cursor: pointer;
255+
transition: background-color 0.3s;
256+
}
257+
258+
.collapsible-btn:hover {
259+
background: #1d4ed8;
260+
}
261+
262+
.collapsible-content {
263+
display: none;
264+
overflow: hidden;
265+
transition: max-height 0.5s ease-in-out;
266+
}
267+
268+
.feature-demonstration {
269+
display: grid;
270+
grid-template-columns: 1fr;
271+
gap: 2rem;
272+
}
273+
274+
.feature-item {
275+
background: #fff;
276+
padding: 2rem;
277+
border-radius: 12px;
278+
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
279+
border: 1px solid #e2e8f0;
280+
}
281+
282+
.feature-item h3 {
283+
margin-bottom: 1rem;
284+
color: #1e293b;
285+
}
286+
287+
.video-placeholder {
288+
text-align: center; /* Center the block-level videos */
289+
}
290+
291+
.workflow-placeholder {
292+
display: flex;
293+
gap: 1rem;
294+
flex-wrap: wrap;
295+
justify-content: center;
296+
}
297+
238298
/* Testimonials */
239299
.testimonials {
240300
background: #f1f5f9;
@@ -507,3 +567,39 @@ section h2 {
507567
text-decoration: none;
508568
color: #334155;
509569
}
570+
571+
.video-placeholder video {
572+
width: 80%; /* Make videos larger */
573+
max-width: 600px; /* Add a max-width */
574+
height: auto;
575+
border-radius: 8px;
576+
margin-bottom: 1rem; /* Add space between stacked videos */
577+
}
578+
579+
.workflow-placeholder img {
580+
flex: 1 1 45%;
581+
width: 45%;
582+
height: auto;
583+
object-fit: contain;
584+
border-radius: 8px;
585+
cursor: pointer;
586+
transition: transform 0.3s;
587+
}
588+
589+
.workflow-placeholder img:hover {
590+
transform: scale(1.05);
591+
}
592+
593+
.image-overlay .overlay-content {
594+
max-width: 90vw;
595+
max-height: 90vh;
596+
padding: 1rem;
597+
background: transparent;
598+
box-shadow: none;
599+
}
600+
601+
.image-overlay img {
602+
max-width: 100%;
603+
max-height: 100%;
604+
object-fit: contain;
605+
}

0 commit comments

Comments
 (0)