Skip to content

Instantly share code, notes, and snippets.

View Rameshwar-ghodke's full-sized avatar
💭
working as Web Designer

Rameshwar ghodke Rameshwar-ghodke

💭
working as Web Designer
View GitHub Profile
@Rameshwar-ghodke
Rameshwar-ghodke / Typing Effect - Auto enter Text
Created September 2, 2021 05:09
Auto Typing text Effect - Auto enter Text
<button onclick="typeWriter()">Click here</button>
<p id='demo_txt'></p>
<script>
var i = 0;
var txt = 'Technical Support By Techrigel Systems Pvt. LTD.';
var speed = 50;
function typeWriter() {
if (i < txt.length) {
@Rameshwar-ghodke
Rameshwar-ghodke / Mouse hover moving effect and show mouse position circle with animation effect.
Created August 27, 2021 04:11
Mouse hover moving effect and show mouse position circle with animation effect.
<style>
#moveItem {width: 25px; height: 25px; background-color: #ff3333ab; position: absolute; box-shadow: 0px 8px 32px 0px #100f0f21; border-radius: 50%;
/* z-index: 1; */ transition:.4s cubic-bezier(.19,1,.22,1);}
</style>
<div id="moveItem"></div
<script>
var item = document.querySelector("#moveItem");
var itemRect = item.getBoundingClientRect();
@Rameshwar-ghodke
Rameshwar-ghodke / Fetch url with server request and divide it into sepearte function or component wise in php
Created July 14, 2021 05:53
Fetch url with server request and divide it into sepearte function or component wise in php
<?php
$directoryURI = $_SERVER['REQUEST_URI'];
$path = parse_url($directoryURI, PHP_URL_PATH);
$components = explode('/', $path);
$Module = $components[2];
$function = $components[3];
// die();
?>
<div class='row'>
<div class='col-4 col-sm-4 col-md-4 col-lg-4 col-xl-4'>
<select class='form-control' name='date' id='' placeholder=''>
<option value=' '>DD</option>
<option value='01'>01</option> <option value='02'>02</option>
<option value='03'>03</option> <option value='04'>04</option>
<option value='05'>05</option> <option value='06'>06</option>
<option value='07'>07</option> <option value='08'>08</option>
<option value='09'>09</option> <option value='10'>10</option>
<option value='11'>11</option> <option value='12'>12</option>