我从webpack开始。
我想将swiper库与webpack一起使用。
虽然使用js部分没有问题,但我找不到包含和使用css部分的方法。 我测试几个需要语法,但没有一个工作:
require("swiper/dist/swiper.css");
require("swiper.css");
这可能吗? 有诀窍吗?
答案 0 :(得分:0)
在最新版本中,您使用:
import numpy as np
a=np.array([[0, 1, 2, 3], [1, 1, 2, 3], [4, 0, 1, 3], [2, 1, 5, 6], [1, 0, 7, 3]])
#count number of 1's in each column
col=np.count_nonzero(a==1, axis=0)
#extract how many 1's there are in the second column
PA=col[1]
CS = len(a)- PA
#Create array to put in rows of PA that have 1 in second column
PA_Array = np.zeros([PA, 4])
CS_Array = np.zeros([CS, 4])
for row in PA_Array:
for x in row:
if x==1:
PA_Array[row, :] = a[row,:]
else
CS_Array[row, :] = a[row,:]
print(PA_Array)
答案 1 :(得分:-2)
$ npm install swiper --save
// include css:
import 'style!css!swiper/dist/css/swiper.css';
//包括js
import 'swiper';
之前没有工作的原因是你的style,css,sass加载器被设置为排除node_modules文件夹或设置为仅包含某些文件夹。