Skip to content

Instantly share code, notes, and snippets.

@remmi11
remmi11 / index.html
Created October 12, 2018 20:31
Owl Carousel - Active and Center items
<div class="owl-carousel">
<div><img src="//placehold.it/300x150/936/fff/?text=1" alt=""></div>
<div><img src="//placehold.it/300x150/693/fff/?text=2" alt=""></div>
<div><img src="//placehold.it/300x150/369/fff/?text=3" alt=""></div>
<div><img src="//placehold.it/300x150/f63/fff/?text=4" alt=""></div>
</div>
@remmi11
remmi11 / index.html
Created January 10, 2018 05:29
Coonected2Fiber Demo
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Enterprise Profiler</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
@remmi11
remmi11 / watchPosition_demo.html
Created April 8, 2016 18:16 — forked from strongwave/watchPosition_demo.html
A Demo Drawing Google Map using watchPosition API for HTML5
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.4.2.min.js"></script>
<script>
jQuery(window).ready(function(){
gMapInit();
jQuery("#watchPositionBtn").click(initiate_watchlocation);
jQuery("#stopWatchBtn").click(stop_watchlocation);
@remmi11
remmi11 / console.js
Created January 25, 2016 21:13 — forked from waynegraham/console.js
print console.log output to a debug div (for mobile)
if (typeof console != "undefined")
if (typeof console.log != 'undefined')
console.olog = console.log;
else
console.olog = function() {};
console.log = function(message) {
console.olog(message);
$('#debugDiv').append('<p>' + message + '</p>');
};
<!DOCTYPE html>
<html>
<head>
<title>Furman Database</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<!-- Load Leaflet from CDN-->
<link href="//cdn.jsdelivr.net/leaflet/0.7.3/leaflet.css" rel="stylesheet">
<script src="//cdn.jsdelivr.net/leaflet/0.7.3/leaflet.js"></script>
<!-- Esri Leaflet Core -->