HTML to top, to bottom anchor animation
2 ways:
Jquery is complex
The easiest way add css
/*add to css*/
html {
scroll-behavior: smooth;
}
HTML to top, to bottom anchor animation
2 ways:
Jquery is complex
The easiest way add css
/*add to css*/
html {
scroll-behavior: smooth;
}
Có nhiều cách làm trên internet nhưng bị lỗi, khó hiểu
Cách làm đơn giản nhất là replace string json
myArray = {oldKey1: 'value1', oldKey2: 'value2', another: '1'}
Change oldKey1 = newKey1
/*Object to string*/
var jsonMap = JSON.stringify(myArray);
/*Key replace by newkey*/
var jsonMapReplace = jsonMap.replace(oldKey1,newKey1);
/*string to JSON again*/
myArray = JSON.parse(jsonMapReplace);