Skip to content

Instantly share code, notes, and snippets.

@Dexterstat
Dexterstat / new_gist_file.js
Created January 14, 2014 11:54
jquery animate
$( "#book" ).animate({
opacity: 0.25,
left: "+=50",
height: "toggle"
}, 5000, function() {
// Animation complete.
});
@Dexterstat
Dexterstat / no_select.css
Created January 14, 2014 13:59
Can not select element by mouse or touch
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
@Dexterstat
Dexterstat / timeout
Created January 14, 2014 19:35
timeout function javascript use
setTimeout(function(){alert("Hello")},3000);
setTimeout("zoom()",3000);
@Dexterstat
Dexterstat / distance_2_poins.js
Created January 15, 2014 10:06
Calculage distance between 2 points on Google Maps
function distance(lat1,lon1,lat2,lon2) {
var R = 6371; // km (change this constant to get miles)
var dLat = (lat2-lat1) * Math.PI / 180;
var dLon = (lon2-lon1) * Math.PI / 180;
var a = Math.sin(dLat/2) * Math.sin(dLat/2) +
Math.cos(lat1 * Math.PI / 180 ) * Math.cos(lat2 * Math.PI / 180 ) *
Math.sin(dLon/2) * Math.sin(dLon/2);
var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));
var d = R * c;
if (d>1) return Math.round(d)+"km";
@Dexterstat
Dexterstat / fullscreen.js
Created January 15, 2014 13:41
full element on a webpage (escape full screen on changing link)
function cancelFullScreen(el) {
var requestMethod = el.cancelFullScreen||el.webkitCancelFullScreen||el.mozCancelFullScreen||el.exitFullscreen;
if (requestMethod) { // cancel full screen.
requestMethod.call(el);
} else if (typeof window.ActiveXObject !== "undefined") { // Older IE.
var wscript = new ActiveXObject("WScript.Shell");
if (wscript !== null) {
wscript.SendKeys("{F11}");
}
@Dexterstat
Dexterstat / loadedgooglemaps.js
Created January 15, 2014 13:42
Gooogle Maps Loaded
google.maps.event.addListenerOnce(theMap, 'tilesloaded', function(){
//action
});
@Dexterstat
Dexterstat / get_post_by_title.php
Created March 6, 2014 15:48
Get post id by title
/**
* Get id from post title
*
* @version 0.01
* @access internal
* @author Agavriloaie Marius <contact@dexblog.ro>
*
* @param none
* @return none
* =====================================================================================================
@Dexterstat
Dexterstat / currentdate.js
Created March 6, 2014 16:35
Current date on javascript
var currentDate = new Date()
var day = currentDate.getDate()
var month = currentDate.getMonth() + 1
var year = currentDate.getFullYear()
@Dexterstat
Dexterstat / wp_query.php
Created April 15, 2014 11:43
wp_query select post that are specific to a caetgory, with a taxonomy and numer of post and page numver
$args = array(
'post_type' => 'post',
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'movie_genre',
'field' => 'slug',
'terms' => array( 'action', 'comedy' )
),
array(
@Dexterstat
Dexterstat / htmls+css
Created April 15, 2014 14:25
position middle horizontal and vertical
<div class="loginDiv"></div>
.loginDiv {
position: absolute;
left: 50%;
top: 50%;
text-align: center;
background-image: url('Images/loginBox.png');
width:546px;
height:265px;