Posts

Showing posts with the label Screen Recorder - XRecode

ImageCompressor tool

Here is a complete code for an Image Compressor Tool. The tool leverages the `browser-image-compression` library for easy image compression. It includes a colorful design and is fully responsive. Save the following code as an `index.html` file and include the JavaScript library via a CDN.  Code```html Image Compressor Tool Image Compressor Tool Select an image to compress Compress Image ``` ---

Screen Recorder - XRecode

Image
Screen Recorder Tool Screen Recorder Tool Start Recording Stop Recording Download Recording body { background-color: #f0f0f0; font-family: 'Arial', sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .container { background-color: #ffffff; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); padding: 20px; text-align: center; width: 80%; max-width: 500px; } h1 { color: #333; } video { width: 100%; height: auto; border-radius: 10px; margin-bottom: 20px; } .buttons { display: flex; justify-content: space-around; } button { background-color: #6200ea; border: none; border-radius: 5px; color: white; cursor: pointer; font-size: 16px; padding: 10px 20px; transition: background-color 0.3s;...