# floating-ui **Repository Path**: free_pan/floating-ui ## Basic Information - **Project Name**: floating-ui - **Description**: 一个低级别的纯js库, 用于解决弹出提示,弹出窗口,下拉菜单等浮动元素的定位问题 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: https://floating-ui.com/ - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-12-24 - **Last Updated**: 2024-02-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

Floating UI

> **Popper is now Floating UI! For Popper v2, visit [its dedicated branch.](https://github.com/floating-ui/popper-core/tree/v2.x)** [![Rolling Versions](https://img.shields.io/badge/Rolling%20Versions-Enabled-brightgreen)](https://rollingversions.com/floating-ui/floating-ui) [Website](https://floating-ui.com) Floating UI is a low-level library for positioning "floating" elements like tooltips, popovers, dropdowns, menus and more. Since these types of elements float on top of the UI without disrupting the flow of content, challenges arise when positioning them. Floating UI exposes primitives which enable a floating element to be positioned next to a given reference element while appearing in view for the user as best as possible. Features include overflow prevention (or collision awareness), placement flipping, and more. - **Tiny**: 600-byte core with highly modular architecture for tree-shaking - **Low-level**: Hyper-granular control over positioning behavior - **Pure**: Predictable, side-effect free behavior - **Extensible**: Powerful middleware system - **Platform-agnostic**: Runs on any JavaScript environment which provides measurement APIs, including the web and React Native ## Installation To use it on the web: ```shell npm install @floating-ui/dom ``` ```shell yarn add @floating-ui/dom ``` ## Quick start ```js import {computePosition} from '@floating-ui/dom'; const referenceElement = document.querySelector('#button'); const floatingElement = document.querySelector('#tooltip'); function applyStyles({x = 0, y = 0, strategy = 'absolute'}) { Object.assign(floatingElement.style, { position: strategy, left: `${x}px`, top: `${y}px`, }); } applyStyles(); computePosition(referenceElement, floatingElement, { placement: 'right', }).then(applyStyles); ``` [Visit the docs for detailed information](https://floating-ui.com/docs/computePosition). ## React - [React DOM](https://floating-ui.com/docs/react-dom) - [React Native](https://floating-ui.com/docs/react-native) (\*experimental) ## Components Right now, Floating UI focuses on positioning floating elements, but a package that exposes higher-level primitives for building these elements more easily is in development. ## Contributing This project is a monorepo written in TypeScript using npm workspaces. The website is using Next.js SSG and Tailwind CSS for styling. - Fork and clone the repo - Install dependencies in root directory with `npm install` - Build initial package dist files with `npm run build` ### Testing grounds `npm run dev` in the root will launch the `@floating-ui/dom` development visual tests at `http://localhost:1234`. The playground uses React to write each test route, bundled by Parcel. When making changes to `packages/core` or `packages/dom`, Parcel will hot reload the app and display the changes. Each route has screenshots taken of the page by Playwright to ensure all the functionalities work as expected; this is an easy, reliable and high-level way of testing the code. Below the main container are UI controls to turn on certain state and options. Every single combination of state is tested visually via the snapshots to cover as much as possible. ### Website `npm -w website run dev` in the root will launch the website at `localhost:3000`. ## License MIT