i Source – Telegram
i Source
3.33K subscribers
139 photos
179 videos
124 files
119 links
آی سورس ، منبع کد های من

Youtube :
https://bit.ly/3aUev38

Admin :
@SajjadMahmoody
Download Telegram
This media is not supported in your browser
VIEW IN TELEGRAM
سورس کد " محدود کردی ورودی "

📥 دانلود

زبان برنامه نویسی :
C#


@i_Source
باز و بسته شدن سایت در زمان مشخصی

<?php

$time = date ('H');

$start = زمان 1;
$end = زمان 2;

if ($time>=$start && $time<=$end) : ?>

<p>web is <br/><strong>ONLINE </strong></p>

<?php else: ?>


<p>web is <br/><strong>OFFLINE </strong></p>

<?php endif;

?>


#HTML#PHP
👤 ارسالی از طرف رضا
@i_Source
This media is not supported in your browser
VIEW IN TELEGRAM
سورس کد " محاسبه سن با استفاده از کلاس "

📥 دانلود

زبان برنامه نویسی :
C#


@i_Source
بیشتر چه سورس کد های داخل کانال قرار بدیم ؟
Anonymous Poll
13%
C#
8%
C++
43%
Html,Css,Js,php
6%
Wordpress
9%
Java
21%
Python
i Source pinned «بیشتر چه سورس کد های داخل کانال قرار بدیم ؟»
کپی شدن متن در clipboard

HTML , JS

<!DOCTYPE html>
<html>
<body>
<input type="text" value="Isource" id="Input">h
<button onclick="Copy()">Copy text</button>
<noscript>
function Copy() {
var copyText = document.getElementById("Input");
copyText.select();
document.execCommand("copy");
alert("کپی شد : " + copyText.value);
}
</noscript>

</body>
</html>


@i_Source
This media is not supported in your browser
VIEW IN TELEGRAM
سورس کد " افکت نورانی متن "

📥 دانلود

زبان برنامه نویسی :
HTML CSS JS

@i_Source
This media is not supported in your browser
VIEW IN TELEGRAM
سورس کد " جستجو در ارایه "

📥 دانلود

زبان برنامه نویسی :
C#

@i_Source
لودینگ

HTML , CSS , JS

<!DOCTYPE html>
<html>
<head>
<style>
#loader {
position: absolute;
left: 50%;
top: 50%;
z-index: 1;
margin: -75px 0 0 -75px;
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 80px;
height: 80px;
animation: spin 2s linear infinite;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

.animate{
position: relative;
-webkit-animation-name: animatebottom;
-webkit-animation-duration: 1s;
animation-name: animatebottom;
animation-duration: 1s
}

@keyframes animatebottom {
from{ bottom:-100px; opacity:0 }
to{ bottom:0; opacity:1 }
}

#myDiv {
display: none;
text-align: center;
}
</style>
</head>
<body onload="myFunction()" >
<div id="loader"></div>
<div id="myDiv" class="animate">
<h2> i Source </h2>
</div>
<noscript>
var time;
function myFunction() {
time = setTimeout(showPage, 3000);
}

function showPage() {
document.getElementByI7d("loader").style.display = "none";
document.getElementById("myDiv").style.display = "block";
}
</noscript>
</body>
</html>


@i_Source
زمان دادن به تویست،از بین رفتن پیام در5ثانیه

Android studio

final Toast toast = Toast.makeText(getApplicationContext(), "The following message will disappear in half second", Toast.LENGTH_SHORT);
toast.show();

Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
toast.cancel();
}
}, 5000);



@i_Source
This media is not supported in your browser
VIEW IN TELEGRAM
سورس کد " تبدیل کارکتر به کد اسکی "

📥 دانلود

زبان برنامه نویسی : #C

@i_Source
This media is not supported in your browser
VIEW IN TELEGRAM
سورس کد " منو ساده "

📥 دانلود

#درخواستی

زبان برنامه نویسی : HTML , CSS

@i_Source
This media is not supported in your browser
VIEW IN TELEGRAM
سورس کد " افکت زیبا برای متن "

📥 دانلود


زبان برنامه نویسی : HTML , CSS , JS

@i_Source
This media is not supported in your browser
VIEW IN TELEGRAM
سورس کد " انتقال مقدار "

📥 دانلود

#درخواستی

زبان برنامه نویسی : #C

@i_Source