13 lines
328 B
JavaScript
13 lines
328 B
JavaScript
function init_start(){
|
|
smoothload();
|
|
}
|
|
|
|
function smoothload(){
|
|
setTimeout(function () {
|
|
|
|
}, 5000);
|
|
$(".start_row_1").addClass("start_row_switch");
|
|
$(".start_row_2").addClass("start_row_switch");
|
|
$(".start_row_3").addClass("start_row_switch");
|
|
$(".start_row_4").addClass("start_row_switch");
|
|
} |