Skip to content

Instantly share code, notes, and snippets.

View appsdevpk's full-sized avatar

Kashif appsdevpk

View GitHub Profile
@appsdevpk
appsdevpk / slideshow.html
Created January 17, 2021 20:46
Enhanced stimulus slideshow
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script src="https://unpkg.com/stimulus/dist/stimulus.umd.js"></script>
<style>
.slideitem{
opacity: 0;
width:0px;
position:absolute;
@appsdevpk
appsdevpk / index.html
Last active October 12, 2020 08:13
Custom web component for fetching and displaying remote data using handlebars templates
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Remote Fetch Component</title>
<style>
.adp-remotefetch{
position: relative
@appsdevpk
appsdevpk / classes.php
Last active April 17, 2020 07:01
JQuery and Html code generator in php
<?php
class jQuery{
private $selector;
private $methodsList = array();
public function __construct($selector){
$this->selector = $selector;
}
public function output(){
$output = "jQuery(".$this->selector.")";