引入js和css

<link href="css/prettyPhoto.css" rel="stylesheet"/>
<script src="js/jquery.prettyPhoto.js"></script>

事件

<a href="#" rel="prettyPhoto" title="bpm image" style="display:none"></a>

设置

<script type="text/javascript">

            $(document).ready(function(){
                $("a[rel^='prettyPhoto']").prettyPhoto({
                    theme:'light_square', //'dark_rounded'
                    show_title: false,
                    social_tools: false,
                    keyboard_shortcuts: true
                });

            });
</script>            

触发

可以自己绑定到某个button的click事件

<script type="text/javascript">
function viewPng(){
                var png = 'xxx.png';
                $.prettyPhoto.open(png);
            }
</script>            

参考


codecraft
11.9k 声望2k 粉丝

当一个代码的工匠回首往事时,不因虚度年华而悔恨,也不因碌碌无为而羞愧,这样,当他老的时候,可以很自豪告诉世人,我曾经将代码注入生命去打造互联网的浪潮之巅,那是个很疯狂的时代,我在一波波的浪潮上留下...