Не могу решить
есть код
$('.placeholder').after().click(function () { $(this).hide(); }); $(function(){ $('#thumbs a').touchTouch(); }); Подскажите как к .placeholder присвоить span, вывести необходимо так <div class="placeholder"> <img src="23.jpg"> </div> Мне необходимо <div class="placeholder"> <img src="23.jpg"> <span>.......</span> </div> |
Stas1985,
подожду переводчика |
Цитата:
|
Не знаю, что там насчет
Цитата:
<div class="placeholder"> <img src="https://javascript.ru/cat/list/donkey.gif"> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script> $('.placeholder img').after('<span>.......</span>'); </script> |
|
Цитата:
after в моем примере делает <div class="placeholder"> <img src="https://javascript.ru/cat/list/donkey.gif"> <span>.......</span> </div> а append делает <div class="placeholder"> <img src="https://javascript.ru/cat/list/donkey.gif"> <span>.......</span> </img> </div> |
Dilettante_Pro, прошу прощения, не обратил внимания на img в конце селектора.
|
Nexus,
Можно было бы и проще <div class="placeholder"> <img src="https://javascript.ru/cat/list/donkey.gif"> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script> $('.placeholder').append('<span>.......</span>'); </script> но у ТС в скрипте зачем-то стоит after() - вот я и решил его использовать |
Не работает.
Вот пример страницы _https://lik-astana.kz/bagetnaya-masterskaya/oformlenie-v-baget/izgotovlenie-ram-dlya-kartin-detail.html просматривать необходимо как на мобильных устройствах. Данный скрипт мне необходим для вывода заголовка к большой картинке в модальном окне. |
Данный код будет работать в том же файле где и подключается картинка
$('.placeholder img').after('<span>.......</span>'); В моем случаи необходимо подключить <span>.......</span> в модальном окне слайдера. В выше указанном примере если в браузере включить эмулятор мобильного то откроется мобильный шаблон и в нем кликниуть на картинку то откроется лайтбокс с увеличенной картинкой во туда мне и надо поместить <span>.......</span> |
Выкладываю весь шаблон моего слайдера
<?php defined('_JEXEC') or die('Restricted access'); $doc = JFactory::getDocument(); $style_image = ' /*.vm-img-desc {display:none;}*/ a.ask-a-question {border:none; background: none;} .container_image{display: block; height: auto; width: 100%;} .container_image_all {float: left; height: auto; width: 70px; border: solid 1px #e5e5e5; margin: 5px 5px 0px 0px;} .one{float: left; display: inline-block; margin: 60px 0px 0px -17px; font-size: 10px; color: #a9a6a678;} '; $doc->addStyleDeclaration($style_image); $document = JFactory::getDocument(); $document->addScriptDeclaration(" $('.placeholder').after().click(function () { $(this).hide(); }); $(function(){ $('#thumbs a').touchTouch(); }); "); echo '<div class="container_image"><div id="thumbs">'; $count_images = count ($this->product->images); if ($count_images >= 1) { // $start_image = VmConfig::get(1) ? 0 : 1; $start_image = 0; } for ($i = $start_image; $i < $count_images; $i++) { $image = $this->product->images[$i]; echo '<div class="container_image_all">'.$image->displayMediaThumb(false, true, '', true).'</div>'.'<div class="one" ></div>'; } echo '</div></div>'; // echo $image->file_meta; ?> <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/jsn_mobilize/touch/css/styles.css" /> <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/jsn_mobilize/touch/touchTouch/touchTouch.css" /> <script src="<?php echo $this->baseurl ?>/templates/jsn_mobilize/touch/touchTouch/touchTouch.jquery.js"></script> вот touchTouch.jquery.js /** * @name jQuery touchTouch plugin * @author Martin Angelov * @version 1.0 * @url [url]http://tutorialzine.com/2012/04/mobile-touch-gallery/[/url] * @license MIT License */ (function(){ /* Private variables */ var overlay = $('<div id="galleryOverlay">'), slider = $('<div id="gallerySlider">'), prevArrow = $('<a id="prevArrow"></a>'), nextArrow = $('<a id="nextArrow"></a>'), overlayVisible = false; /* overlayVisible = true; */ /* Creating the plugin */ $.fn.touchTouch = function(){ var placeholders = $([]), index = 0, allitems = this, items = allitems; // Appending the markup to the page overlay.hide().appendTo('body'); slider.appendTo(overlay); // Creating a placeholder for each image items.each(function(){ placeholders = placeholders.add($('<div class="placeholder">')); }); // Hide the gallery if the background is touched / clicked slider.append(placeholders).on('click',function(e){ if(!$(e.target).is('img')){ hideOverlay(); } }); // Listen for touch events on the body and check if they // originated in #gallerySlider img - the images in the slider. $('body').on('touchstart', '#gallerySlider img', function(e){ var touch = e.originalEvent, startX = touch.changedTouches[0].pageX; slider.on('touchmove',function(e){ e.preventDefault(); touch = e.originalEvent.touches[0] || e.originalEvent.changedTouches[0]; if(touch.pageX - startX > 10){ slider.off('touchmove'); showPrevious(); } else if (touch.pageX - startX < -10){ slider.off('touchmove'); showNext(); } }); // Return false to prevent image // highlighting on Android return false; }).on('touchend',function(){ slider.off('touchmove'); }); // Listening for clicks on the thumbnails items.on('click', function(e){ e.preventDefault(); var $this = $(this), galleryName, selectorType, $closestGallery = $this.parent().closest('[data-gallery]'); // Find gallery name and change items object to only have // that gallery //If gallery name given to each item if ($this.attr('data-gallery')) { galleryName = $this.attr('data-gallery'); selectorType = 'item'; //If gallery name given to some ancestor } else if ($closestGallery.length) { galleryName = $closestGallery.attr('data-gallery'); selectorType = 'ancestor'; } //These statements kept seperate in case elements have data-gallery on both //items and ancestor. Ancestor will always win because of above statments. if (galleryName && selectorType == 'item') { items = $('[data-gallery='+galleryName+']'); } else if (galleryName && selectorType == 'ancestor') { //Filter to check if item has an ancestory with data-gallery attribute items = items.filter(function(){ return $(this).parent().closest('[data-gallery]').length; }); } // Find the position of this image // in the collection index = items.index(this); showOverlay(index); showImage(index); // Preload the next image preload(index+1); // Preload the previous preload(index-1); }); // If the browser does not have support // for touch, display the arrows if ( !("ontouchstart" in window) ){ overlay.append(prevArrow).append(nextArrow); prevArrow.click(function(e){ e.preventDefault(); showPrevious(); }); nextArrow.click(function(e){ e.preventDefault(); showNext(); }); } // Listen for arrow keys $(window).bind('keydown', function(e){ if (e.keyCode == 37) { showPrevious(); } else if (e.keyCode==39) { showNext(); } else if (e.keyCode==27) { //esc hideOverlay(); } }); /* Private functions */ function showOverlay(index){ // If the overlay is already shown, exit if (overlayVisible){ return false; } // Show the overlay overlay.show(); setTimeout(function(){ // Trigger the opacity CSS transition overlay.addClass('visible'); }, 100); // Move the slider to the correct image offsetSlider(index); // Raise the visible flag overlayVisible = true; } function hideOverlay(){ // If the overlay is not shown, exit if(!overlayVisible){ return false; } // Hide the overlay overlay.hide().removeClass('visible'); overlayVisible = false; //Clear preloaded items $('.placeholder').empty(); //Reset possibly filtered items items = allitems; } function offsetSlider(index){ // This will trigger a smooth css transition slider.css('left',(-index*100)+'%'); } // Preload an image by its index in the items array function preload(index){ setTimeout(function(){ showImage(index); }, 1000); } // Show image in the slider function showImage(index){ // If the index is outside the bonds of the array if(index < 0 || index >= items.length){ return false; } // Call the load function with the href attribute of the item loadImage(items.eq(index).attr('href'), function(){ placeholders.eq(index).html(this); }); } // Load the image and execute a callback function. // Returns a jQuery object function loadImage(src, callback){ var img = $('<img>').on('load', function(){ callback.call(img); }); img.attr('src',src); } function showNext(){ // If this is not the last image if(index+1 < items.length){ index++; offsetSlider(index); preload(index+1); } else{ // Trigger the spring animation slider.addClass('rightSpring'); setTimeout(function(){ slider.removeClass('rightSpring'); },500); } } function showPrevious(){ // If this is not the first image if(index>0){ index--; offsetSlider(index); preload(index-1); } else{ // Trigger the spring animation slider.addClass('leftSpring'); setTimeout(function(){ slider.removeClass('leftSpring'); },500); } } }; })(jQuery); Может всетаки кто подскажет как решить |
Данный вопрос по прежнему актуален.
Так как js знаю очень плохо помогите решить. |
window.onload = function(){ $('.placeholder').click(function(){ $(this).append('<p><span>.......</span></p>'); }); } Но лучше span закрыть стилем CSS и менять класс по клику. |
BSwan,
код форматируют специальные теги [ js ] ... [/js], [ html ] ... [/html] и другие аналогичные, см. http://javascript.ru/formatting |
рони
Спасибо. ) |
Цитата:
span у меня закрыт стилем CSS .vm-img-desc {display:none;} открытый span выглядит так <span class="vm-img-desc">............</span> Подскажите по подробнее как можно реализовать |
Как я понимаю что за вывод отвечает сам файл touchTouch.jquery.js и описание скорее всего выводит он но как его правильно настроить я не могу понять.
|
|
вот пример страницы _https://lik-astana.kz/bagetnaya-masterskaya/oformlenie-v-baget/izgotovlenie-ram-dlya-kartin-detail.html товара если переключить браузер на отображение как на мобильных то откроется мобильный шаблон а при наведении на картинку она откроется а модальном окне вот мне и надо добавить описание к этой картинки.
Переведенный выше код не работает так как он подгружает span с класса .placeholder а в моем случаи span находится в классе container_image_all а класс .placeholder грузит скрипт touchTouch.jquery.js. Возможно ли перехватить span в классе container_image_all и загрузить его по клику в .placeholder window.onload = function(){ var divBlock = document.querySelectorAll('.placeholder'); for(var i=0; i < divBlock.length; i++){ divBlock[i].onclick = function(){ this.children['1'].classList.toggle('vm-img-desc'); // 1 это жостко зашитая позиция в nodList } } } |
Stas1985,
Попробуйте такой вариант в touchTouch // Creating a placeholder for each image items.each(function(){ var plh = $('<div class="placeholder">'); plh.append(this.nextElementSibling); placeholders = placeholders.add(plh); }); Правда, там еще есть $('.placeholder').empty();:-E Как-то бы это совместить с loadImage |
Цитата:
// Creating a placeholder for each image items.each(function(){ var plh = $('<div class="placeholder">'); plh.append(this.nextElementSibling); placeholders = placeholders.add(plh); }); |
Тогда так
// Call the load function with the href attribute of the item loadImage(items.eq(index).attr('href'), function(){ placeholders.eq(index).html(this); placeholders.eq(index).append("<span>" + items.eq(index).children('img').attr('alt') + "</span>"); }); } |
Dilettante_Pro
Спасибо! Данный код работает но при этом дублируется описание. Подскажите с чем это связанно? |
Цитата:
|
_https://lik-astana.kz/bagetnaya-masterskaya/oformlenie-v-baget/izgotovlenie-ram-dlya-kartin-detail.html
Тут надо включить в браузере просмотр как на мобильном так как шаблоны разные для мобильного и десктоп |
Stas1985,
Дублирования не заметил. В спан, мне кажется, лучше добавить стиль // Call the load function with the href attribute of the item loadImage(items.eq(index).attr('href'), function(){ placeholders.eq(index).html(this); placeholders.eq(index).append("<span style='display:block;position:relative;bottom:20px;'>" + items.eq(index).children('img').attr('alt') + "</span>"); }); } Почему исчезли спаны из container_image_all? |
Цитата:
|
Просто у вас placeholder получается шире экрана.
Нужен другой ограничитель - и текст сам переносится <img src="https://lik-astana.kz/images/stories/virtuemart/product/oforml_v_bag4.jpg"> <div style="display:block;width:400px;border:1px solid black;position:relative;bottom:20px;"> <span style=>Подскажите можно ли сделать чтоб текст переносился на другую строчку если он заходит за пределы окна</span> </div> |
Спасибо Dilettante_Pro!
Перенос строки сделал стилями <span style='display:block;position:relative;bottom:30px;white-space:normal;line-height:0.9;'> Теперь вроде как надо все. |
В коде есть стрелки для изображений
/* Private variables */ var overlay = $('<div id="galleryOverlay">'), slider = $('<div id="gallerySlider">'), prevArrow = $('<a id="prevArrow"></a>'), nextArrow = $('<a id="nextArrow"></a>'), overlayVisible = false; prevArrowVisible = true; nextArrowVisible = true; sliderVisible = true; /* overlayVisible = true; false;*/ Подскажите как их активировать на изображении? |
Тут реализованы данные стрелки. Как они включаются то же не могу понять.
|
Stas1985,
У вас раньше в galleryOverlay были стрелки: Объявление var overlay = $('<div id="galleryOverlay">'), slider = $('<div id="gallerySlider">'), prevArrow = $('<a id="prevArrow"></a>'), // предыдущий кадр nextArrow = $('<a id="nextArrow"></a>'), // следующий кадр overlayVisible = false; и далее overlay.append(prevArrow).append(nextArrow); Куда они исчезли? |
Часовой пояс GMT +3, время: 19:21. |