linux终端页面分开的命令,Linux命令行风格的404页面

JavaScript

语言:

JaveScriptBabelCoffeeScript

确定

var inputReady = true;

var input = $('.404-input');

input.focus();

$('.container').on('click', function(e) {

input.focus();

});

input.on('keyup', function(e) {

$('.new-output').text(input.val());

// console.log(inputReady);

});

$('.four-oh-four-form').on('submit', function(e) {

e.preventDefault();

var val = $(this).children($('.404-input')).val().toLowerCase();

var href;

if (val === 'kittens') {

showKittens();

} else {

resetForm();

}

});

function resetForm(withKittens) {

var message = "Sorry that command is not recognized."

var input = $('.404-input');

if (withKittens) {

$('.kittens').removeClass('kittens');

message = "Huzzzzzah Kittehs!"

}

$('.new-output').removeClass('new-output');

input.val('');

$('.terminal').append('

' + message + '

$('.new-output').velocity(

'scroll'

), {

duration: 100

}

}

function showKittens() {

$('.terminal').append("

" +

"

,----, ,----, ,---,

" +

"

,--. ,/ .`| ,/ .`| ,--. ,`--.' |

" +

"

,--/ /| ,---, ,` .' : ,` .' : ,---,. ,--.'| .--.--. | : :

" +

"

,---,': / ' ,`--.' | ; ; / ; ; / ,' .' | ,--,: : | / / '. ' ' ;

" +

"

: : '/ / | : : .'___,/ ,' .'___,/ ,' ,---.' | ,`--.'`| ' : | : /`. / | | |

" +

"

| ' , : | ' | : | | : | | | .' | : : | | ; | |--` ' : ;

" +

"

' | / | : | ; |.'; ; ; |.'; ; : : |-, : | \\ | : | : ;_ | | '

" +

"

| ; ; ' ' ; `----' | | `----' | | : | ;/| | : ' '; | \\ \\ `. ' : |

" +

"

: ' \\ | | | ' : ; ' : ; | : .' ' ' ;. ; `----. \\ ; | ;

" +

"

' : |. \\ | | ' ' : | ' : | ' : ;/| ' : | ; .' / /`--' / `--..`;

" +

"

| | '_\\.' ' : | ; |.' ; |.' | | \\ | | '`--' '--'. / .--,_

" +

"

' : | ; |.' '---' '---' | : .' ' : | `--'---' | |`.

" +

"

; |,' '---' | | ,' ; |.' `-- -`, ;

" +

"

'---' `----' '---' '---`'

" +

"

");

var lines = $('.kittens p');

$.each(lines, function(index, line) {

setTimeout(function() {

$(line).css({

"opacity": 1

});

textEffect($(line))

}, index * 100);

});

$('.new-output').velocity(

'scroll'

), {

duration: 100

}

setTimeout(function() {

var gif;

$.get('http://api.giphy.com/v1/gifs/random?api_key=dc6zaTOxFJmzC&tag=kittens', function(result) {

gif = result.data.image_url;

$('.terminal').append(''%20+%20gif%20+%20'');

resetForm(true);

});

}, (lines.length * 100) + 1000);

}

function textEffect(line) {

var alpha = [';', '.', ',', ':', ';', '~', '`'];

var animationSpeed = 10;

var index = 0;

var string = line.text();

var splitString = string.split("");

var copyString = splitString.slice(0);

var emptyString = copyString.map(function(el) {

return [alpha[Math.floor(Math.random() * (alpha.length))], index++];

})

emptyString = shuffle(emptyString);

$.each(copyString, function(i, el) {

var newChar = emptyString[i];

toUnderscore(copyString, line, newChar);

setTimeout(function() {

fromUnderscore(copyString, splitString, newChar, line);

}, i * animationSpeed);

})

}

function toUnderscore(copyString, line, newChar) {

copyString[newChar[1]] = newChar[0];

line.text(copyString.join(''));

}

function fromUnderscore(copyString, splitString, newChar, line) {

copyString[newChar[1]] = splitString[newChar[1]];

line.text(copyString.join(""));

}

function shuffle(o) {

for (var j, x, i = o.length; i; j = Math.floor(Math.random() * i), x = o[--i], o[i] = o[j], o[j] = x);

return o;

};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值