Can I use turn.js in WeChat Mini Programs?

such as the title. I look at the official website of turn.js, which says that this js requires JQUERY, but WeChat Mini Programs does not seem to support JQuery.
if it is not supported, is there any way to achieve this effect?

Mar.26,2022

jq involves window objects, which Mini Program does not support.
chances are you need to write one yourself.


Mini Program cannot perform the familiar DOM operation.

and jquery the most useful function is to provide a concise api for us to operate DOM .

so if your plug-in or class library involves DOM actions, it cannot be applied.

Menu