以前は機能していたライトボックス。しかし、流星で試してみたところ、動作しなくなりました。
最初にjqueryの依存関係を追加し、jquery.lightbox.jsとjquery.lightbox.cssをクライアントフォルダーに配置します。
$ meteor add jquery
$ ls -l client/js/jquery.lightbox.js
$ ls -l client/css/jquery.lightbox.css
これは、ライトボックスを使用するためのテストテンプレートとスクリプトです。
->test.html
<template name="test">
<a href="xxxxxxxx" class="screenshot">
<img src="xxxxxx" alt="Screenshot" class="thumbnail"/>
<span class="screenshot-zoom"></span>
</a>
</template>
->screenshot.js
$(function () {
$(".screenshot").lightbox();
});
通常のhtmlとして使用すると、機能しました。しかし、それは流星の下ではありません。私は何かが恋しいですか?