This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('#tag').on('keyup keydown', function(e){ | |
var tagvalue = $(this).val(); | |
$('#tekkodkodarama ul li').remove(); | |
if(tagvalue !== '' ){ | |
$.ajax({ | |
type: "POST", | |
url: "databank.php", | |
data:{'tagvalue':tagvalue}, | |
ajaxStart:function(){ | |
$('#tekkodkodarama ul li').html('Uygun Makale Aranıyor...'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p.marquee{ | |
-webkit-animation-name: marquee; | |
-webkit-animation-timing-function: linear; | |
-webkit-animation-duration:10s; | |
-webkit-animation-iteration-count: infinite; | |
margin: 0; | |
padding: 0; | |
overflow: hidden; | |
display: block; | |
white-space: nowrap; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@keyframes fadeIn{ | |
0% { opacity: 0 } | |
100% { opacity: 1 } | |
} | |
.fadeIn { | |
animation-name: fadeIn; | |
animation-duration: 1s; | |
animation-fill-mode: forwards; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%vertical-align { | |
position: relative; | |
top: 50%; | |
-webkit-transform: translateY(-50%); | |
-ms-transform: translateY(-50%); | |
transform: translateY(-50%); | |
} | |
.element p { | |
@extend %vertical-align; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name":"Adana", | |
"slug":"adana", | |
"plate_code":1, | |
"districts":[ | |
{ | |
"name":"Alada\u011f", | |
"slug":"aladag" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Smartphones (portrait and landscape) ----------- */ | |
@media only screen | |
and (min-width : 320px) | |
and (max-width : 480px) { | |
/* Styles */ | |
} | |
/* Smartphones (landscape) ----------- */ | |
@media only screen | |
and (min-width : 321px) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Google Analytics PHP API | |
* | |
* This class can be used to retrieve data from the Google Analytics API with PHP | |
* It fetches data as array for use in applications or scripts | |
* | |
* This library is free software; you can redistribute it and/or | |
* modify it under the terms of the GNU Lesser General Public |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* From Modernizr */ | |
function whichTransitionEvent(){ | |
var t; | |
var el = document.createElement('fakeelement'); | |
var transitions = { | |
'transition':'transitionend', | |
'OTransition':'oTransitionEnd', | |
'MozTransition':'transitionend', | |
'WebkitTransition':'webkitTransitionEnd' | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
getOffsetSum = (elem)-> | |
top = 0 | |
left = 0 | |
while ( elem ) | |
top = top + parseInt( elem.offsetTop ) | |
left = left + parseInt( elem.offsetLeft ) | |
elem = elem.offsetParent | |
return { top: top, left: left } |
OlderNewer