Skip to main content

10 docs tagged with "performance"

View all tags

Analyzing Bundle Size

Learn how to analyze the bundle size of your Create React App project using Source Map Explorer. Identify areas of your codebase that might be bloated and optimize them for better performance.

Browser Developer Tools

Learn how to use Browser Developer Tools (DevTools) to inspect, debug, and optimize websites for performance, accessibility, and security.

Code Splitting

Learn how to optimize your React application's performance by code splitting. Split your code into smaller chunks and load them only when needed, resulting in faster load times and improved user experiences.

CSS Transforms (2D and 3D)

Learn how to use the CSS transform property with functions like translate, scale, rotate, and skew to visually manipulate elements without affecting the document flow. Explore 2D and 3D transforms, GPU acceleration, and performance tips for smooth animations.

CSS Transitions (Smooth Changes)

Learn how to use CSS transitions to create smooth, animated changes between property values. Understand the four core transition properties: transition-property, transition-duration, transition-timing-function, and transition-delay, along with practical examples for enhancing user experience.

Image Attributes in HTML

Learn about the essential attributes of the HTML <img> tag, focusing on required attributes (src, alt) and performance attributes (width, height, loading) to build accessible and fast websites.

The opacity Property in CSS

Learn how to use the CSS opacity property to control the transparency or translucency of an element, making it semi-transparent or completely invisible.