mirror of
https://github.com/Start9Labs/start9.com.git
synced 2026-03-26 02:11:55 +00:00
remove conflicting gsap import since using cdn
This commit is contained in:
1263
package-lock.json
generated
1263
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -25,12 +25,10 @@
|
||||
"@sardine/eleventy-plugin-tinysvg": "^1.2.0",
|
||||
"date-fns": "^2.29.3",
|
||||
"eleventy-plugin-gen-favicons": "^1.1.1",
|
||||
"eleventy-plugin-lazyimages": "^2.1.2",
|
||||
"eleventy-plugin-seo": "^0.5.2",
|
||||
"slinkity": "^0.8.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"gsap": "^3.10.4",
|
||||
"rss-parser": "^3.12.0"
|
||||
},
|
||||
"browserslist": [
|
||||
|
||||
@@ -39,7 +39,7 @@ Now, your blog is ready to be deployed. All generated files are located at `_sit
|
||||
└── src
|
||||
├── _data # Eleventy data folder (supports .json and exported .js)
|
||||
├── _includes
|
||||
│ └── components # landing sections and reuable components
|
||||
│ └── components # landing sections and reusable components
|
||||
│ └── layouts # page layouts
|
||||
│ └── svgs # for including in njk templates
|
||||
└── assets
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
/************************************************/
|
||||
/* SECTION, LINE, AND TEXT APPEARANCE ANIMATION */
|
||||
/************************************************/
|
||||
import { gsap } from "gsap";
|
||||
|
||||
//////////////////////////////////////////
|
||||
// HERO
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
/********************************************/
|
||||
/* BITCOIN SECTION FLOATING ICONS ANIMATION */
|
||||
/********************************************/
|
||||
import { gsap } from "gsap";
|
||||
|
||||
//////////////////////////////////////////
|
||||
// DATA
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
//////////////////////////////////////////
|
||||
// HEADER
|
||||
import { gsap } from "gsap";
|
||||
|
||||
gsap.to("header", {
|
||||
duration: 0.5,
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
//////////////////////////////////////////
|
||||
// HERO
|
||||
import { gsap } from "gsap";
|
||||
|
||||
gsap.to("#hero-image", {
|
||||
duration: 1,
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
import { gsap } from "gsap";
|
||||
import { positionServiceIcons } from '/@root/src/assets/js/bitcoin-animation.js'
|
||||
import { initializeSizes, tick, next } from '/@root/src/assets/js/ticker-animation.js'
|
||||
|
||||
|
||||
@@ -1,4 +1 @@
|
||||
import { gsap } from "gsap";
|
||||
import { CustomEase } from "gsap/CustomEase";
|
||||
|
||||
gsap.registerPlugin(CustomEase, window.DrawSVGPlugin, ScrollTrigger);
|
||||
@@ -1,6 +1,5 @@
|
||||
//////////////////////////////////////////
|
||||
// MENU
|
||||
import { gsap } from "gsap";
|
||||
|
||||
let menuOpen = document.getElementById("menu-open"),
|
||||
menuClose = document.getElementById("menu-close"),
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
import { gsap } from "gsap";
|
||||
|
||||
const defaultActions = "play none none none";
|
||||
|
||||
gsap.from("section#hero+section", {
|
||||
|
||||
Reference in New Issue
Block a user