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

@double_ming/screen-fit-vue

v1.0.4

Published

支持等比缩放、宽度占满、高度占满、宽或高等比缩放,满足最大占满容器、宽高填充整个容器不进行等比缩放等数字大屏适配 vue组件

Downloads

19

Readme

screen-fit

安装

# npm 
npm install @double_ming/screen-fit-vue
# yarn 
yarn add @double_ming/screen-fit-vue
# pnpm
pnpm add @double_ming/screen-fit-vue

demo

预览效果

使用

<script setup lang="ts" name="VueComponent">
import ScreenFit from '@double_ming/screen-fit-vue';
import bg from '../assets/1.jpg'
import { EFillType } from '@double_ming/screen-fit';
import { onMounted, ref, watch, reactive } from 'vue';

const fitType = ref<EFillType>(EFillType.contain)
function action(type: EFillType) {
  fitType.value = type
}
</script>

<template>
  <div>
      <ScreenFit :design-height="1080" :design-width="1920" :fit-type="fitType" style="height: 100vh">
        <div :style="{ backgroundImage: `url(${bg})`, width: '1800px', height: '1000px', objectFit: 'cover' }"></div>
      </ScreenFit>
    <div class="action">
      <span class="action-text">适配模式:</span>
      <button id="cover" @click="action(EFillType.cover)">cover</button>
      <button id="widthFit" @click="action(EFillType.widthFit)">widthFit</button>
      <button id="heightFit" @click="action(EFillType.heightFit)">heightFit</button>
      <button id="contain" @click="action(EFillType.contain)">contain</button>
      <button id="fill" @click="action(EFillType.fill)">fill</button>
    </div>
  </div>
</template>

<style lang="scss" scoped>
.action {
  position: fixed;
  z-index: 99999999;
  left: 0;
  top: 0;
  background-color: #1a1a1a;

  &-text {
    padding: 0.6em 1.2em;
  }

  &-info {
    padding: 0.6em 1.2em;
    text-align: left;
    font-size: 20px;
    color: red;
  }

  button {
    width: 100px;
  }
}
</style>

适配方式

提供了5中适配方式,分别为EFillType枚举中的coverwidthFitheightFitcontainfill

  • cover 等比缩放,占满整个容器
  • widthFit 宽度占满容器,高等比缩放
  • heightFit 高度占满容器,宽等比缩放
  • contain 宽或高等比缩放,满足最大占满容器 默认
  • fill 宽和高填充整个容器,不进行等比缩放

本项目是对screen-fit的vue封装,props支持screen-fit所有的配置

props配置参数

| 属性 | 描述 | 类型 | 默认值 | | --- | --- | --- | --- | | designWidth | 设计稿宽 | number | 1920 | | designHeight | 设计稿高 | number | 1080 | | fitType | 适配方式 | EFillType | contain |