Scrollbear - скрипт сохраняет позицию скролла при загрузке картинок
content
Scrollbear.start(document.getElementById('scroll'))
http://changbenny.github.io/scrollbear/
content
Scrollbear.start(document.getElementById('scroll'))
$.ajax({
url: 'csv_data.csv',
dataType: 'text',
}).done(successFunction);
function successFunction(data) {
var allRows = data.split(/\r?\n|\r/);
var table = '';
for (var singleRow = 0; singleRow < allRows.length; singleRow++) {
if (singleRow === 0) {
table += '';
table += '';
} else {
table += ' ';
}
var rowCells = allRows[singleRow].split(',');
for (var rowCell = 0; rowCell < rowCells.length; rowCell++) {
if (singleRow === 0) {
table += '';
table += rowCells[rowCell];
table += ' ';
} else {
table += '';
table += rowCells[rowCell];
table += ' ';
}
}
if (singleRow === 0) {
table += ' ';
table += '';
table += '';
} else {
table += '';
}
}
table += '';
table += '
';
$('body').append(table);
}
var options = {
classname: 'my-class',
id: 'my-id',
target: document.getElementById('myDivId')
};
var nanobar = new Nanobar( options );
// move bar
nanobar.go( 30 ); // size bar 30%
nanobar.go( 76 ); // size bar 76%
// size bar 100% and and finish
nanobar.go(100);