nuxt3 fullpage.js踩坑, fullpage.js 全屏滚动

nuxt3 fullpage.js踩坑, fullpage.js 全屏滚动, fullpage is underfind
我用的是 @nuxt 3.6.1

1.引入 fullpage.js(3.0.1), 下载地址 github链接,下载后放到assets文件下

app: {
    head: {
      script: [
        { src: '/assets/fullpage.js', type: "text/javascript", body: true }
      ],
    },
    buildAssetsDir: 'static',   //修改站点资产的文件夹名称,默认是_nuxt
    rootId: "root", //自定义nuxt根元素id

  },
  css: ["~/assets/css/fullpage.css"],

2.fullpage.js源码,去掉license验证,注释这几行代码

   if(!isLicenseValid){
       showError('error', 'Fullpage.js version 3 has changed its license to GPLv3 and it requires a `licenseKey` option. Read about it here:');
       showError('error', 'https://github.com/alvarotrigo/fullPage.js#options.');
    }

在这里插入图片描述

3.页面使用

template 代码

<template>
  <div id="fullpage">
    <div class="section" id="section0">
      <div class="intro">
        <h1>Section 1</h1>
        <p>Scroll down to see auto-height sections</p>
      </div>
    </div>
    <div class="section fp-auto-height" id="section1">
      <div class="slide" id="slide1">
        <div class="myContent">
          <h1>Section 2</h1>
        </div>
      </div>
      <div class="slide" id="slide2">
        <h1>Section 2.2</h1>
      </div>
    </div>
    <div class="section fp-auto-height" id="section2">
      <div class="myContent">
        <h1>Section 3</h1>
      </div>
    </div>
  </div>
</template>

js代码

<script setup>
const myFullpage = ref(null)
onMounted(() => {
  console.log('app is ready')
  myFullpage.value = new fullpage('#fullpage', {
    verticalCentered: true,
    scrollingSpeed: 1000, // 设置为想要的滚动时间(毫秒)
  });
})

onBeforeUnmount(() => {
  myFullpage.value.destroy()
  myFullpage.value = null
})
</script>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

一头小绵羊

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值