', nextArrow: ' ', slidesToScroll: 1 }); $('.module-showroom .showroom-content').slick({ infinite: false, prevArrow: false, nextArrow: false, draggable: false, swipe: false, adaptiveHeight: true, slidesToShow: 1, slidesToScroll: 1 }); }); $(document).on('click', '.module-contact .contact-title', function(){ if (!$('.module-contact').hasClass('contact-open')) { $('.module-contact, .module-showroom').addClass('contact-open'); } }); $(document).on('click', '.module-contact .top-title', function(){ if ($('.module-contact').hasClass('contact-open')) { $('.module-contact, .module-showroom').removeClass('contact-open'); } }); $(document).on('click', '.remove-showroom-product', function(){ var obj = $('.module-showroom .remove-showroom-product[data-id="' + $(this).attr('data-id') + '"][data-povid="' + $(this).attr('data-povid') + '"]'); if ($('.product-remove[data-id="' + $(this).attr('data-id') + '"][data-povid="' + $(this).attr('data-povid') + '"]').length > 0) { var showroom_page_obj = $('.product-remove[data-id="' + $(this).attr('data-id') + '"][data-povid="' + $(this).attr('data-povid') + '"]'); showroom_page_obj.closest('.cover').animate({'height':'0'},500,function(){ showroom_page_obj.closest('.show-list').remove(); }); } $.ajax({ url: 'index.php?route=account/showroom/removeShowroomProduct', type: 'post', data: {'product_id': obj.attr('data-id'), 'product_option_value_id': obj.attr('data-povid')}, dataType: 'json', success: function(json) { $('.module-showroom .quantity').text(json['product_qty']); var slick_index = obj.parent().attr('data-slick-index'); $('.module-showroom .showroom-product-box').slick('slickRemove', slick_index); $('.showroom-product-box .showroom-product-item').each(function(k,v){ $(this).attr('data-slick-index', k); }); if (json['product_qty'] < 3) { $('.module-showroom .showroom-product-box').slick('slickAdd', '
'); if (showroom_full) { $('.showroom-register').text('SAVE YOUR FAVORITES'); $('.showroom-content-text').html('Heart Your Favorite Styles & Invite your friends to comment AND VOTE
'); showroom_full = false; } } var heart_obj = $('.product-showroom-heart.in-showroom[data-id="' + obj.attr('data-id') + '"][data-povid="' + obj.attr('data-povid') + '"]'); heart_obj.removeClass('in-showroom'); heart_obj.find('i').attr('class', 'fa fa-heart-o'); $('.product-page-showroom-btn[data-povid="' + obj.attr('data-povid') + '"]').removeClass('in-showroom'); $('.product-page-showroom-btn[data-povid="' + obj.attr('data-povid') + '"]').html(' ADD TO SHOWROOM'); }, error: function(xhr, ajaxOptions, thrownError) { alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText); } }); }); $(document).on('click', '.showroom-page-back', function(){ $('.module-showroom .showroom-content').slick('slickGoTo', 0); }); $(document).on('click', '.showroom-register', function(){ $('.module-showroom .showroom-content').slick('slickGoTo', 1); }); $(document).on('click', '.module-showroom .login', function(){ $('.module-showroom .showroom-content').slick('slickGoTo', 2); }); $(document).on('click', '.product-showroom-heart', function(){ var obj = $(this); var pid = obj.attr('data-id'); var povid = obj.attr('data-povid'); var heart_obj = $('.product-showroom-heart[data-id="' + pid + '"][data-povid="' + povid + '"]'); if ($('.option_color').length > 0) { if ($('.option_color').length > 1) { var povid = $('.option_color').eq(0).find('.current').attr('povid'); if (!povid) { povid = $('.option_color').eq(0).find('a').eq(0).attr('povid'); } } else if($('.option_color .current') > 0) { var povid = $('.option_color .current').attr('povid'); } } if (!obj.hasClass('in-showroom')) { if (!showroom_full) { heart_obj.addClass('in-showroom'); heart_obj.find('i').attr('class', 'fa fa-heart'); } $.ajax({ url: 'index.php?route=account/showroom/addShowroomProduct', type: 'post', data: {'product_id': pid, 'product_option_value_id': povid}, dataType: 'json', success: function(json) { $('.product-page-showroom-btn').addClass('in-showroom'); $('.product-page-showroom-btn').html(' ADDED TO SHOWROOM'); $('.module-showroom .quantity').text(json['product_qty']); var html_str = ' '; if (json['product_qty'] <= 3) { $('.module-showroom .showroom-product-box').slick('slickRemove', '2'); } $('.module-showroom .showroom-product-box').slick('slickAdd', '' + html_str + '
', 0, true); if (json['showroom_full']) { $('.showroom-register').text('CREATE YOUR ACCOUNT'); $('.showroom-content-text').html('Your Temporary Showroom is FULL! Create an account to 1. Heart unlimited dresses. 2. Invite your friends to comment AND VOTE!
'); if (!$('.module-showroom').hasClass('open')) { $('.showroom-title').trigger('click'); } showroom_full = true; } }, error: function(xhr, ajaxOptions, thrownError) { alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText); } }); } else { $('.product-page-showroom-btn').removeClass('in-showroom'); $('.product-page-showroom-btn').html(' ADD TO SHOWROOM'); heart_obj.removeClass('in-showroom'); heart_obj.find('i').attr('class', 'fa fa-heart-o'); console.log(pid); console.log(povid); console.log($('.remove-showroom-product[data-id="' + pid + '"][data-povid="' + povid + '"]').length); $('.remove-showroom-product[data-id="' + pid + '"][data-povid="' + povid + '"]').trigger('click'); } }); $(document).on('click', '.showroom-register-submit', function(){ $('.showroom-register-content .has-error').removeClass('has-error'); $('.showroom-register-content .error-tip').remove(); $.ajax({ url: 'index.php?route=account/register/ajaxRegister', type: 'post', data: $('.showroom-register-content input'), dataType: 'json', success: function(json) { if (json['error']) { $.each(json['error'], function(key, value){ $('.showroom-register-content input[name="' + key + '"]').parent().addClass('has-error'); $('.showroom-register-content input[name="' + key + '"]').after('' + value + '
'); }); $('.module-showroom .showroom-content').slick('slickGoTo', 1); } else if(json['success']) { window.location.href = 'https://www.forherandforhim.com/index.php?route=account/success'; } }, error: function(xhr, ajaxOptions, thrownError) { alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText); } }); }); $(document).on('click', '.showroom-login-submit', function(){ $('.showroom-login-content .error-tip').remove(); $.ajax({ url: 'index.php?route=account/login/ajaxLogin', type: 'post', data: $('.showroom-login-content input'), dataType: 'json', success: function(json) { if (json['error']) { $('.showroom-login-content').after('' + json['error'] + '
'); $('.module-showroom .showroom-content').slick('slickGoTo', 2); } else if(json['success']) { window.location.reload(); } }, error: function(xhr, ajaxOptions, thrownError) { alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText); } }); }); $(document).on('change', '.contact-content-box select[name="inquiry_type"]', function(){ if ($(this).val() == 1) { $(this).parent().after('
'); } else { $('.contact-content-box input[name="order_id"]').parent().remove(); } }); $(document).on('click', '.showroom-contact-submit', function(){ $('.contact-form .error-tip').remove(); $.ajax({ url: 'index.php?route=information/contact/ajaxContact', type: 'post', data: $('.contact-form input, .contact-form select, .contact-form textarea'), dataType: 'json', success: function(json) { if (json['error']) { $.each(json['error'], function(key, value){ $('.contact-form input[name="' + key + '"], .contact-form select[name="' + key + '"], .contact-form textarea[name="' + key + '"]').after('' + value + '
'); }); } else if(json['success']) { $('.contact-form select').val('0'); $('.contact-form input, .contact-form textarea').val(''); $('.contact-content').prepend('Thanks for your enquiry! We will get back to you as soon as we can.
'); } }, error: function(xhr, ajaxOptions, thrownError) { alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText); } }); }); $(document).click(function(e){ var target = $(e.target); if ($('.module-showroom.open').length > 0) { if(target.closest('.module-showroom').length != 0) return; $('.showroom-title').trigger('click'); } if ($('.module-contact.contact-open').length > 0) { if(target.closest('.module-contact').length != 0) return; $('.contact-content-box .top-title').trigger('click'); } }); FREE SWATCHES
CHIFFON/LACE/TULLE STRETCH CHIFFON LUX SHIMMER THICK LUX SHIMMER POLY-SPANDEX JERSEY
Swipe to view this color outdoors & on real dresses!
1 of 8 images
Apricot Blush indoors
77 Colors, Custom Color Available
28 Colors, Custom Color Available
28 Colors, Custom Color Available
19 Colors, Custom Color Available
50 Colors, Custom Color Available
AMAZING COLOR COMBOS Perfect color combos recommended by our stylists! WE ALSO PROVIDE CUSTOM COLORS!
If you don’t find your perfect color here, just send a picture of the color you like to
service@forherandforhim.com , we will find you a perfect match from our 1000+ offline color options.
COLOR SWATCHES: ($4.99 / PIECE)
FLASH OFFER! Sign up today to get 5 FREE color swatches!
The FREE tape measure will come with the color swatches.
Lace & tulle are dyed based on Chiffon. So you’ll receive chiffon swatches for color reference of lace & tulle dresses.
Color Swatches: $4.99 / PC
- CHOOSE MATERIAL - - CHIFFON - - LUX SHIMMER - - THICK LUX SHIMMER - - STRETCH CHIFFON - - POLY-SPANDEX JERSEY -
Lace and tulle fabrics are dyed based on chiffon colors. So please order chiffon color swatches for reference of lace and tulle colors.
Color swatch orders cannot be changed or cancelled 12 hours after payment's confirmed.
Color swatch orders cannot be changed or cancelled 12 hours after payment's confirmed.
Color swatch orders cannot be changed or cancelled 12 hours after payment's confirmed.
Color swatch orders cannot be changed or cancelled 12 hours after payment's confirmed.
Stretch Chiffon and Chiffon are two different fabrics, so there might be color variation between chiffon dresses and stretch chiffon dresses, even for the same color.
Color swatch orders cannot be changed or cancelled 12 hours after payment's confirmed.
TAP TO CHOOSE FROM 77 COLORS
TAP TO CHOOSE FROM 28 COLORS
TAP TO CHOOSE FROM 19 COLORS
TAP TO CHOOSE FROM 28 COLORS
TAP TO CHOOSE FROM 50 COLORS
http://www.rvp04kb1.tw |
http://m.rvp04kb1.tw |
http://wap.rvp04kb1.tw |
http://3g.rvp04kb1.tw |
http://4g.rvp04kb1.tw |
http://5g.rvp04kb1.tw |
http://mobile.rvp04kb1.tw |
http://vip.rvp04kb1.tw |
http://ios.rvp04kb1.tw |
http://anzhuo.rvp04kb1.tw |
http://17762d.rvp04kb1.tw |
http://f7b3.rvp04kb1.tw |
http://7d.rvp04kb1.tw |
http://a274.rvp04kb1.tw |
http://b6.rvp04kb1.tw |
http://1c10.rvp04kb1.tw |
一女两男前后夹击