npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

i-devices

v0.1.4

Published

i Devices 旨在通过纯CSS代码实现手机、电脑(像iPhone系列、MacBook系列、Apple Watch)等各类设备样式效果

Downloads

20

Readme

什么?

一款通过纯 CSS 代码实现手机(iphone 系列、Google 系列)、电脑(MacBook、SurfaceBook 系列)等各类设备样式效果。

特性

  • 🎨 多设备: 提供多种设备样式,像 iPhone 系列、MacBook、Apple Watch。
  • 🚧 跨框架: 完全基于纯 CSS,vue\react\原生均可使用,超易用。
  • 🪄 灵活可定制: 内容区域支持自定义,满足个性化需求。
  • 🧱 丰富特性: 开箱即用的颜色和组件

使用指南

原生 Js Module

<!DOCTYPE html>
<head>
  <!-- src: iDevices cdn 链接 -->
  <script type="module" src="./iDevices.js"></script>
</head>
<body>
  <i-devices></i-devices>
</body>

React 使用方式

yarn add i-devices
import React from 'react';
import { IDevicesReact } from 'i-devices';

export default function () {
  return (
    <div>
      <IDevicesReact></IDevicesReact>
    </div>
  );
}

Vue 使用方式

yarn add i-devices
<template>
  <div>
    <i-devices></i-devices>
  </div>
</template>

<script>
import 'i-devices';
</script>

案例展示

更多使用方式,详见设备详情和使用 API

import { IDevicesReact } from 'i-devices';
import React from 'react';

export default function () {
  return (
    <div style={{ width: '350px', margin: '0 auto' }}>
      <IDevicesReact modelcolor="device-silver" scale={0.9} />
    </div>
  );
}

丰富的设备样式

纯 CSS 代码实现手机、电脑等各类设备样式效果(Modern devices crafted in pure CSS)

API

| 参数 | 说明 | 类型 | 默认值 | | :--------- | :--------------------------- | :------------------------------------------------------------------ | :------------------- | | modelname | 设备名称 | string (device-iphone-15 | device-iphone-x | device-iphone-14| device-macbook\ 等等) | device-iphone-14-pro | | modelcolor | 外壳颜色(详见详情) | string (device-gold | device-purple| device-silver\ 等等) | 默认 | | scale | 缩放 | string (0 - 1) | 1 | | modelbar | 展示手机 tabbar 导航栏 | boolean | false | | bartitle | 导航标题 | string | 标题 | | usezoom | transform 改用 zoom 进行缩放 | boolean | false |

支持设备内容自定义,slot="slot-screen"

<IDevicesReact
  modelname="device-iphone-14-pro"
  modelcolor={actColor}
  scale={scale}
>
  <img
    slot="slot-screen"
    className="device-screen"
    src="/img/bg-iphone-14-pro.jpg"
    loading="lazy"
  />
</IDevicesReact>

问题反馈

一、套了个“手机”壳影响原拖拽功能?

根源查看 原因:position: fixed 会受到父级上的 transform 的影响,导致位置不准确。 fixed:开启 usezoom,去除 transform 缩放,改用 zoom 缩放。 或者可以将拖动项移动到 DOM 的另一个位置(document.body)

如果在使用过程中发现任何问题、或者有改善建议,欢迎在 GitHub Issues进行反馈

License

The MIT License.