我正在使用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>
现在我需要从图库中删除一些东西,比如社交按钮。 Here是文档,在“自定义”部分中,我需要的是。我应该使用选项 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>