|
@@ -628,6 +628,7 @@ $(function () {
|
|
|
if (this.dataset.inited) return; else this.dataset.inited = 'true';
|
|
|
var $bt = $('<div class="uploadimage"><span><a data-file="mul" class="layui-icon layui-icon-upload-drag"></a></span><span data-file="images"></span></div>');
|
|
|
var ims = this.value ? this.value.split('|') : [], $in = $(this).after($bt);
|
|
|
+
|
|
|
$bt.find('[data-file]').attr({
|
|
|
'data-path': $in.data('path') || '', 'data-size': $in.data('size') || 0, 'data-type': $in.data('type') || 'gif,png,jpg,jpeg', 'data-max-width': $in.data('max-width') || 0, 'data-max-height': $in.data('max-height') || 0, 'data-cut-width': $in.data('cut-width') || 0, 'data-cut-height': $in.data('cut-height') || 0,
|
|
|
}).on('push', function (evt, src) {
|
|
@@ -645,7 +646,18 @@ $(function () {
|
|
|
});
|
|
|
ims.reverse(), $in.val(ims.join('|'));
|
|
|
}), $bt.before($img);
|
|
|
+ /*$img.on('click', function (event) {
|
|
|
+ // console.log($(this).attr('data-tips-image'))
|
|
|
+ var url = $(this).attr('data-tips-image')
|
|
|
+ console.log(url.substring(url.length - 3,url.length))
|
|
|
+ if(url.substring(url.length - 3,url.length) == 'mp4') {
|
|
|
+ console.log('视频')
|
|
|
+ } else {
|
|
|
+ console.log('tupain')
|
|
|
+ }
|
|
|
+ })*/
|
|
|
});
|
|
|
+
|
|
|
}
|
|
|
});
|
|
|
};
|
|
@@ -1067,14 +1079,38 @@ $(function () {
|
|
|
|
|
|
/*! 注册 data-tips-image 事件行为 */
|
|
|
onEvent('click', '[data-tips-image]', function (event) {
|
|
|
- (event.items = [], event.$imgs = $(this).parent().find('[data-tips-image]')).map(function () {
|
|
|
+
|
|
|
+ var url = $(this).attr('data-tips-image')
|
|
|
+
|
|
|
+ if(url.substring(url.length - 3,url.length) == 'mp4') {
|
|
|
+ console.log('视频')
|
|
|
+ var loadstr = '<video width="100%" height="100%" controls="controls" autobuffer="autobuffer" autoplay="autoplay" loop="loop"><source src="' + url + '" type="video/mp4"></source></video>'
|
|
|
+ layer.open({
|
|
|
+ type: 1,
|
|
|
+ area: ['800px', '600px'],
|
|
|
+ title: '播放视频',
|
|
|
+ content: loadstr,
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ (event.items = [], event.$imgs = $(this).parent().find('[data-tips-image]')).map(function () {
|
|
|
+ event.items.push({src: this.dataset.tipsImage || this.dataset.lazySrc || this.src});
|
|
|
+ }) && layer.photos({
|
|
|
+ anim: 5, closeBtn: 1, photos: {start: event.$imgs.index(this), data: event.items}, tab: function (pic, $ele) {
|
|
|
+
|
|
|
+ $ele.find('img').attr('referrerpolicy', 'no-referrer');
|
|
|
+ $ele.find('.layui-layer-close').css({top: '20px', right: '20px', position: 'fixed'});
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ /*(event.items = [], event.$imgs = $(this).parent().find('[data-tips-image]')).map(function () {
|
|
|
event.items.push({src: this.dataset.tipsImage || this.dataset.lazySrc || this.src});
|
|
|
}) && layer.photos({
|
|
|
anim: 5, closeBtn: 1, photos: {start: event.$imgs.index(this), data: event.items}, tab: function (pic, $ele) {
|
|
|
- $ele.find('img').attr('referrerpolicy', 'no-referrer');
|
|
|
- $ele.find('.layui-layer-close').css({top: '20px', right: '20px', position: 'fixed'});
|
|
|
+ console.log('土拍你')
|
|
|
+ /!*$ele.find('img').attr('referrerpolicy', 'no-referrer');
|
|
|
+ $ele.find('.layui-layer-close').css({top: '20px', right: '20px', position: 'fixed'});*!/
|
|
|
}
|
|
|
- });
|
|
|
+ });*/
|
|
|
});
|
|
|
|
|
|
/*! 注册 data-phone-view 事件行为 */
|