Giter VIP home page Giter VIP logo

Comments (2)

dreamerhammer avatar dreamerhammer commented on June 20, 2024

Optimize javascript

1 Debounce input handler

function onScroll (evt) {

  // Store the scroll value for laterz.
  lastScrollY = window.scrollY;

  // Prevent multiple rAF callbacks.
  if (scheduledAnimationFrame)
    return;

  scheduledAnimationFrame = true;
  requestAnimationFrame(readAndUpdatePage);
}
window.addEventListener('scroll', onScroll);

2 Use requestAnimationFrame to execute animation

3 Use requestAnimationFrame to break big task into micro tasks

function processTaskList(taskStartTime) {
  var taskFinishTime;

  do {
    // Assume the next task is pushed onto a stack.
    var nextTask = taskList.pop();

    // Process nextTask.
    processTask(nextTask);

    // Go again if there’s enough time to do the next task.
    taskFinishTime = window.performance.now();
  } while (taskFinishTime - taskStartTime < 3);

  if (taskList.length > 0)
    requestAnimationFrame(processTaskList);
}

Optimize style

1 Use simple style rules

2 Use BEM for css

3 Limit the amount of elements effected by css tunning

Optimize layout

1 Avoid setting width/height/position/float/display related

2 Use flexbox

3 Avoid force layout synchronization

Optimize Paint and Composition

1 Use transform and opacity

2 Reducing complex paint works, like box-shadow

3 Use will-change

.moving-element {
  will-change: transform;
}

4 Limit paint area, exp. not update header and footer together

Reference

https://developers.google.com/web/fundamentals/performance/rendering/

from learning.

dreamerhammer avatar dreamerhammer commented on June 20, 2024

Worker

1. Embedded Worker

var textContent = `
	onmessage = function(oEvent){
        importScripts()
     }
`
var blob = new Blob([textContent], {type: 'text/javascript'})
var worker = new Worker(window.URL.createObjectURL(blob));
worker.postMessage("Hello2")

from learning.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.