👍5❤4🔥3
Media is too big
VIEW IN TELEGRAM
Responsive Admin Dashboard with Light & Dark Mode
In this tutorial, I'm going to show you how to use modern #HTML, #CSS, and #JavaScript to create a completely responsive admin dashboard with light and dark mode theme functionality. We'll be using CSS Variables, CSS Grid, CSS Flexbox, Media queries for our responsive design, and CSS transitions and animations for some cool animation effects
Source Code : https://github.com/AsmrProg-YT/Dashboard-Designs
💎 Channel: @htmlcss_channels
In this tutorial, I'm going to show you how to use modern #HTML, #CSS, and #JavaScript to create a completely responsive admin dashboard with light and dark mode theme functionality. We'll be using CSS Variables, CSS Grid, CSS Flexbox, Media queries for our responsive design, and CSS transitions and animations for some cool animation effects
Source Code : https://github.com/AsmrProg-YT/Dashboard-Designs
💎 Channel: @htmlcss_channels
❤6👍1
Media is too big
VIEW IN TELEGRAM
Responsive and Automatic Changeable Animated Image Slider using #HTML, #CSS & #JavaScript | Carousel
In this tutorial, we will learn how to create a fully responsive and both automatic and manually changeable image slider using HTML, CSS and JavaScript. Basically It is a solution video of some problems.
In this project, I have tried to solve some of the problems of my previous projects regarding image slider:
👉 In this slider, the image will cover the full screen.
👉 Image will be changed both automatically and manually.
👉 In this slider, you can use unlimited images.
👉 This image slider is fully Responsive.
Source Code Link:-
Github: https://github.com/Mohammed-Faysal/image-slider-html-css-javascript.git
💎 Channel: @htmlcss_channels
In this tutorial, we will learn how to create a fully responsive and both automatic and manually changeable image slider using HTML, CSS and JavaScript. Basically It is a solution video of some problems.
In this project, I have tried to solve some of the problems of my previous projects regarding image slider:
👉 In this slider, the image will cover the full screen.
👉 Image will be changed both automatically and manually.
👉 In this slider, you can use unlimited images.
👉 This image slider is fully Responsive.
Source Code Link:-
Github: https://github.com/Mohammed-Faysal/image-slider-html-css-javascript.git
💎 Channel: @htmlcss_channels
👍6🔥1
Top 7 #HTML, #CSS, and #JavaScript Project With Source Code
1. E-commerce Website Using Html Css And Javascript
Click here For Code
2. Restaurant Website Html Css
Click here For Code
3. Personal Portfolio Website
Click here For Code
4. Travel Website Using Html Css
Click here For Code
5. Quiz App Using Javascript
Click here For Code
6. Chatbot Using Javascript
Click here For Code
7. Music Player Game Using JavaScript
Click here For Code
#پروژه
💎 Channel: @htmlcss_channels
1. E-commerce Website Using Html Css And Javascript
Click here For Code
2. Restaurant Website Html Css
Click here For Code
3. Personal Portfolio Website
Click here For Code
4. Travel Website Using Html Css
Click here For Code
5. Quiz App Using Javascript
Click here For Code
6. Chatbot Using Javascript
Click here For Code
7. Music Player Game Using JavaScript
Click here For Code
#پروژه
💎 Channel: @htmlcss_channels
👍4❤2
This media is not supported in your browser
VIEW IN TELEGRAM
#CSS TIP
Use trigonometric functions in CSS to create a smooth stepped transition delay:
💎 Channel: @htmlcss_channels
Use trigonometric functions in CSS to create a smooth stepped transition delay:
.character {
transition-delay:
calc(sin((var(--index) / 12) * 45deg) * 0.475s);
}
💎 Channel: @htmlcss_channels
👍7❤3👏1
This media is not supported in your browser
VIEW IN TELEGRAM
👨🎨 #CSS TIP
shape-outside property in action
💎 Channel: @htmlcss_channels
shape-outside property in action
.column--left .shape {
float: right;
shape-outside: circle(100px at 100% 50%);
}
💎 Channel: @htmlcss_channels
👍5❤2
ایجاد پالت های رنگی با تابع
CSS color-mix().
تابع color-mix() به ما این امکان را می دهد که دو رنگی را که می خواهیم با هم مخلوط کنیم را مشخص کرده و سپس نتیجه را خروجی می دهیم. ما می توانیم مقدار هر رنگ در ترکیب را کنترل کنیم و تعیین کنیم رنگ ها چگونه با هم ترکیب شوند.
مقدار هر رنگ را به صورت درصد مشخص می کنیم. اگر درصد هر دو رنگ را حذف کنیم، color-mix() به طور پیش فرض از 50% برای هر کدام استفاده می کند. همانطور که در زیر نشان داده شده است، مخلوط کردن قرمز و آبی در قسمت های مساوی رنگ بنفش را همانطور که انتظار می رود به ما می دهد
#css
💎 Channel: @htmlcss_channels
CSS color-mix().
تابع color-mix() به ما این امکان را می دهد که دو رنگی را که می خواهیم با هم مخلوط کنیم را مشخص کرده و سپس نتیجه را خروجی می دهیم. ما می توانیم مقدار هر رنگ در ترکیب را کنترل کنیم و تعیین کنیم رنگ ها چگونه با هم ترکیب شوند.
مقدار هر رنگ را به صورت درصد مشخص می کنیم. اگر درصد هر دو رنگ را حذف کنیم، color-mix() به طور پیش فرض از 50% برای هر کدام استفاده می کند. همانطور که در زیر نشان داده شده است، مخلوط کردن قرمز و آبی در قسمت های مساوی رنگ بنفش را همانطور که انتظار می رود به ما می دهد
.result {
background-color: color-mix(in srgb, blue, red);
}
#css
💎 Channel: @htmlcss_channels
👍13👏3🙏2
یک تولید کننده رمز عبور با طول قابل تنظیم.
این مثال یک تولید کننده رمز عبور ساده ایجاد می کند که با فشار دادن دکمه، یک رمز عبور تصادفی با طول مشخص شده از فرم بالا با استفاده از کاراکترهایی از مجموعه نویسه های مشخص شده ایجاد می کند.
```javascript
function generatePassword() {
const length = parseInt(document.getElementById("passwordLength").value);
const charset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+";
const charsetLength = charset.length;
let password = [];
for (let i = 0; i < length; i++) {
const randomIndex = Math.floor(Math.random() * charsetLength);
password.push(charset[randomIndex]);
}
document.getElementById("password").value = password.join('');
}
#css #javascript
💎 Channel: @htmlcss_channels
این مثال یک تولید کننده رمز عبور ساده ایجاد می کند که با فشار دادن دکمه، یک رمز عبور تصادفی با طول مشخص شده از فرم بالا با استفاده از کاراکترهایی از مجموعه نویسه های مشخص شده ایجاد می کند.
<div class="password-generator">
<input type="text" id="passwordLength" placeholder="Password length">
<input type="text" id="password" readonly>
<button onclick="generatePassword()">Generate</button></div>
```javascript
function generatePassword() {
const length = parseInt(document.getElementById("passwordLength").value);
const charset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+";
const charsetLength = charset.length;
let password = [];
for (let i = 0; i < length; i++) {
const randomIndex = Math.floor(Math.random() * charsetLength);
password.push(charset[randomIndex]);
}
document.getElementById("password").value = password.join('');
}
`
#css #javascript
💎 Channel: @htmlcss_channels
❤5👍2🔥1
100+ Projects using JavaScript.👇
https://www.codewithrandom.com/2023/11/21/frontend-projects-source-code/
#پروژه
#javascript
💎 Channel: @htmlcss_channels
https://www.codewithrandom.com/2023/11/21/frontend-projects-source-code/
#پروژه
#javascript
💎 Channel: @htmlcss_channels
CodeWithRandom
100+ JavaScript Projects For Beginners With Source Code
Explore 100+ JavaScript projects for beginners with source code to build a strong foundation in web development. These projects will boost your coding skills and help you land developer jobs!
👍3🔥1