我想在Drupal8主题中使用这个JS库。所以我已经在我的项目中添加了npm,然后在我的主题中添加了它: libraries.yml
at.enquire:
remote: https://raw.githubusercontent.com/WickyNilliams/enquire.js
version: "2.1.6"
license:
name: MIT
url: https://raw.githubusercontent.com/WickyNilliams/enquire.js/master/LICENSE
gpl-compatible: true
js:
https://cdnjs.cloudflare.com/ajax/libs/enquire.js/2.1.6/enquire.min.js: { type: external, minified: true }
dependencies:
- core/jquery
- core/matchmedia然后加载vi艾米info.yml:
<script src="https://cdnjs.cloudflare.com/ajax/libs/enquire.js/2.1.6/enquire.min.js"></script>在我的js文件中:
$(document).ready(function () {
enquire.register("screen and (min-width:768px) and (max-width:1024px) and (orientation: landscape) and (min-resolution:1dppx)", {
deferSetup : true,
setup : function() {
$(".acces_rubriques iframe").height('55vh').width('45vw');//Video Gde Taille HP
},
match : function() {
console.log('Enquire.js : BP pour: tabletlandscape');
//Video sur HP
$(".acces_rubriques iframe").height('55vh').width('65vw');//Video Gde Taille HP
},
unmatch : function() {
example.unmatch();
}
});//enquire.register(tabletlandscape)
});//Fin document.ready但在我的android标签页上什么也没发生。
可能会遗漏什么?谢谢
发布于 2019-12-04 21:58:15
我决定在Drupal8上采用jquery v3捆绑包。但是我需要使用这个来工作:
jQuery( document ).ready(function() {
//Enquire stuff here
}并通过以下方式将npm enquire.js加载到twig模板中:
{{ attach_library('THEMENAME/npm.enquire') }}通过THEMENAME.libraries.yml和适当的JS:
npm.enquire:
version: VERSION
js:
#Chargement des JS ajoutées via NPM ou externes
node_modules/enquire.js/dist/enquire.min.js: {} 所以它现在起作用了。:)
https://stackoverflow.com/questions/59158889
复制相似问题