将顶部项目添加到照片库touchTouch

时间:2014-06-02 06:12:16

标签: jquery-mobile photo

嗨,我是新的jquery手机。我需要在我的应用中添加照片库。在goggling之后我决定将这个插件用于我的应用程序 http://tutorialzine.com/2012/04/mobile-touch-gallery/

所以这是我的问题我需要动态添加项目到照片库的第一张照片。 请查看下面的代码

mobile.html

 <div class="thumbs" id="imageList">
                    <a href="http://farm8.staticflickr.com/7013/6754656011_3de2cc73a2_z.jpg" style="background-image:url(http://farm8.staticflickr.com/7013/6754656011_3de2cc73a2_m.jpg)" title="Lion Rock"></a>
                    <a href="http://farm8.staticflickr.com/7042/6895252645_45f5dfffaa_z.jpg" style="background-image:url(http://farm8.staticflickr.com/7042/6895252645_45f5dfffaa_m.jpg)" title="Holsten Gate"></a>
                    <a href="http://farm8.staticflickr.com/7183/6943277737_21b521659c_z.jpg" style="background-image:url(http://farm8.staticflickr.com/7183/6943277737_21b521659c_m.jpg)" title="Blue Hour"></a>
                    <a href="http://farm8.staticflickr.com/7047/7000951429_5eae078a62_z.jpg" style="background-image:url(http://farm8.staticflickr.com/7047/7000951429_5eae078a62_m.jpg)" title="Waikato Landscape"></a>
                    <a href="http://farm6.staticflickr.com/5346/7051537899_efc7a44830_z.jpg" style="background-image:url(http://farm6.staticflickr.com/5346/7051537899_efc7a44830_m.jpg)" title="Tauranga Bridge"></a>
                    <a href="http://farm8.staticflickr.com/7268/6951148260_440661b4d1_z.jpg" style="background-image:url(http://farm8.staticflickr.com/7268/6951148260_440661b4d1_m.jpg)" title="East Coast"></a>
                    <a href="http://farm8.staticflickr.com/7259/6930112984_5fcc076288_z.jpg" style="background-image:url(http://farm8.staticflickr.com/7259/6930112984_5fcc076288_m.jpg)" title="Cathedral Cove"></a>
                    <a href="http://farm8.staticflickr.com/7276/6886626710_047cd03acb_z.jpg" style="background-image:url(http://farm8.staticflickr.com/7276/6886626710_047cd03acb_m.jpg)" title="The Pond"></a>
                    <a href="http://farm8.staticflickr.com/7020/6683299491_f2b5f6aa8b_z.jpg" style="background-image:url(http://farm8.staticflickr.com/7020/6683299491_f2b5f6aa8b_m.jpg)" title="Good Night"></a>
                </div>

                <p id="credit">

                    <a href="http://www.flickr.com/photos/zanthia/6754656011/">Lion Rock</a>
                    <a href="http://www.flickr.com/photos/zanthia/6895252645/">Holsten Gate</a>
                    <a href="http://www.flickr.com/photos/zanthia/6943277737/">Blue Hour</a>
                    <a href="http://www.flickr.com/photos/zanthia/7000951429/">Waikato Landscape</a>
                    <a href="http://www.flickr.com/photos/zanthia/7051537899/">Tauranga Bridge</a>
                    <a href="http://www.flickr.com/photos/zanthia/6951148260/">East Coast</a>
                    <a href="http://www.flickr.com/photos/zanthia/6930112984/">Cathedral Cove</a>
                    <a href="http://www.flickr.com/photos/zanthia/6886626710/">The Pond</a>
                    <a href="http://www.flickr.com/photos/zanthia/6683299491/">Good Night</a>
                </p>

addtopitem.js

  $("#imageList").prepend("<a href=\"http://farm8.staticflickr.com/7013/6754656011_3de2cc73a2_z.jpg\" style=\"background-image:url(http://farm8.staticflickr.com/7013/6754656011_3de2cc73a2_m.jpg)\" title=\"1234\" class=\"ui-link\"></a>");

        $("#credit").prepend("<a ihref=\"http://www.flickr.com/photos/zanthia/6754656011/\"  class=\"ui-link\">Lion Rock</a>");



        $('#thumbs a').touchTouch();

我可以将项目添加到照片库的顶部。但是当点击图像时,它似乎根本没有任何功能。任何解决方案?

1 个答案:

答案 0 :(得分:1)

您的代码中有错误。

使用第三方插件的第一条规则是,只有在允许的情况下或者您知道自己在做什么时才更改内容&#34;

您在此div容器中错误地将id重命名为class:

<div class="thumbs" id="imageList">

应该是:

<div id="thumbs imageList">

此插件经过硬编码,可与&lt; div&gt;一起使用 #imageList 容器。

工作示例:http://jsfiddle.net/Gajotres/nYbUL/

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title>A Touch Optimized Gallery | Tutorialzine Freebie</title>

        <!-- Make the page take the full width of the device-->
        <meta name="viewport"  content="width=device-width, initial-scale=1.0, user-scalable=0, maximum-scale=1.0" />

        <!-- The stylesheet -->
        <link rel="stylesheet" href="http://demo.tutorialzine.com/2012/04/mobile-touch-gallery/assets/css/styles.css" />
        <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css" />        
        <link rel="stylesheet" href="http://demo.tutorialzine.com/2012/04/mobile-touch-gallery/assets/touchTouch/touchTouch.css" />

        <!-- Google Fonts -->
        <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Dancing+Script" />

        <!--[if lt IE 9]>
          <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
        <![endif]-->
    </head>

    <body>     
        <div data-role="page" id="index" data-theme="a" >
            <div data-role="header">
                <h3>
                    Gallery example
                </h3>
            </div>

            <div data-role="content">
                <a data-role="button" id="add-thumbnail">Add another thumbnail</a>
                <div id="thumbs">
                    <a href="http://farm8.staticflickr.com/7013/6754656011_3de2cc73a2_z.jpg" style="background-image:url(http://farm8.staticflickr.com/7013/6754656011_3de2cc73a2_m.jpg)" title="Lion Rock"></a>
                    <a href="http://farm8.staticflickr.com/7042/6895252645_45f5dfffaa_z.jpg" style="background-image:url(http://farm8.staticflickr.com/7042/6895252645_45f5dfffaa_m.jpg)" title="Holsten Gate"></a>
                    <a href="http://farm8.staticflickr.com/7183/6943277737_21b521659c_z.jpg" style="background-image:url(http://farm8.staticflickr.com/7183/6943277737_21b521659c_m.jpg)" title="Blue Hour"></a>
                    <a href="http://farm8.staticflickr.com/7047/7000951429_5eae078a62_z.jpg" style="background-image:url(http://farm8.staticflickr.com/7047/7000951429_5eae078a62_m.jpg)" title="Waikato Landscape"></a>
                    <a href="http://farm6.staticflickr.com/5346/7051537899_efc7a44830_z.jpg" style="background-image:url(http://farm6.staticflickr.com/5346/7051537899_efc7a44830_m.jpg)" title="Tauranga Bridge"></a>
                    <a href="http://farm8.staticflickr.com/7268/6951148260_440661b4d1_z.jpg" style="background-image:url(http://farm8.staticflickr.com/7268/6951148260_440661b4d1_m.jpg)" title="East Coast"></a>
                    <a href="http://farm8.staticflickr.com/7259/6930112984_5fcc076288_z.jpg" style="background-image:url(http://farm8.staticflickr.com/7259/6930112984_5fcc076288_m.jpg)" title="Cathedral Cove"></a>
                    <a href="http://farm8.staticflickr.com/7276/6886626710_047cd03acb_z.jpg" style="background-image:url(http://farm8.staticflickr.com/7276/6886626710_047cd03acb_m.jpg)" title="The Pond"></a>
                    <a href="http://farm8.staticflickr.com/7020/6683299491_f2b5f6aa8b_z.jpg" style="background-image:url(http://farm8.staticflickr.com/7020/6683299491_f2b5f6aa8b_m.jpg)" title="Good Night"></a>
                </div>

                <p id="credit">
                    Photos: 
                    <a href="http://www.flickr.com/photos/zanthia/6754656011/">Lion Rock</a>
                    <a href="http://www.flickr.com/photos/zanthia/6895252645/">Holsten Gate</a>
                    <a href="http://www.flickr.com/photos/zanthia/6943277737/">Blue Hour</a>
                    <a href="http://www.flickr.com/photos/zanthia/7000951429/">Waikato Landscape</a>
                    <a href="http://www.flickr.com/photos/zanthia/7051537899/">Tauranga Bridge</a>
                    <a href="http://www.flickr.com/photos/zanthia/6951148260/">East Coast</a>
                    <a href="http://www.flickr.com/photos/zanthia/6930112984/">Cathedral Cove</a>
                    <a href="http://www.flickr.com/photos/zanthia/6886626710/">The Pond</a>
                    <a href="http://www.flickr.com/photos/zanthia/6683299491/">Good Night</a>
                </p>
            </div>                  
        </div>              

        <!-- JavaScript includes - jQuery, turn.js and our own script.js -->
        <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
        <script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js"></script>  
        <script src="http://demo.tutorialzine.com/2012/04/mobile-touch-gallery/assets/touchTouch/touchTouch.jquery.js"></script>
        <script src="http://demo.tutorialzine.com/2012/04/mobile-touch-gallery/assets/js/script.js"></script>    
        <script>
        $(document).on('pageshow', '#index', function(){ 
            $(document).on('click', '#add-thumbnail', function(){       
                $("#thumbs").prepend("<a href=\"http://farm8.staticflickr.com/7013/6754656011_3de2cc73a2_z.jpg\" style=\"background-image:url(http://farm8.staticflickr.com/7013/6754656011_3de2cc73a2_m.jpg)\" title=\"1234\" class=\"ui-link\"></a>");
                $("#credit").prepend("<a ihref=\"http://www.flickr.com/photos/zanthia/6754656011/\"  class=\"ui-link\">Lion Rock</a>");
            });
            ('#thumbs a').touchTouch();
        });
        </script>       
    </body>
</html>
相关问题