PrettyPhoto を使用してギャラリーを作成しています。ギャラリーをできるだけ早く開始するための API を実装しました。これがコードで、動作します。
<!DOCTYPE html>
<html>
<head>
<title>jQuery lightbox clone - prettyPhoto - by Stephane Caron</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="js/jquery-1.6.1.min.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/prettyPhoto.css" type="text/css" media="screen" title="prettyPhoto main stylesheet" charset="utf-8" />
<script src="js/jquery.prettyPhoto.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$().prettyPhoto()
api_images = ['images/fullscreen/2.jpg'];
$.prettyPhoto.open(api_images);
});
</script>
</head>
<body>
</body>
</html>
ここで、ソーシャル ボタンなど、いくつかのものをギャラリーから削除する必要があります。 これがドキュメントです。「カスタマイズ」セクションに必要なものがあります。オプションsocial_toolsを使用してfalseに設定する必要があります。これを上記のコード内に挿入するにはどうすればよいですか?
よろしくお願いします
編集:解決しました!これらの命令を prettyPhoto 引数として配置する必要があるだけです。次のようなものです。
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$().prettyPhoto({social_tools: false, modal: true, allow_resize: true})
api_images = ['images/fullscreen/2.jpg'];
$.prettyPhoto.open(api_images);
social_tools: false;
});
</script>