-
Notifications
You must be signed in to change notification settings - Fork 6.4k
/
gallery.html
25 lines (25 loc) · 1.02 KB
/
gallery.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<div class="page">
<div class="page__hd">
<h1 class="page__title">Gallery</h1>
<p class="page__desc">画廊,可实现上传图片的展示或幻灯片播放</p>
</div>
<div style="display: none;" role="dialog" aria-labelledby="galleryImg" aria-hidden="true" aria-modal="true" class="weui-gallery" id="gallery">
<span id="galleryImg" alt="图片详情" role="img" class="weui-gallery__img" style="background-image: url(./images/pic_article.png);"></span>
<div class="weui-gallery__opr">
<a role="button" aria-label="删除" href="javascript:" class="weui-gallery__del">
<i class="weui-icon-delete weui-icon_gallery-delete"></i>
</a>
</div>
</div>
</div>
<script>
$(function(){
$gallery = $("#gallery");
$galleryImg = $("#galleryImg");
$gallery.attr('aria-hidden','false');
$gallery.fadeIn(100);
setTimeout(function(){
$galleryImg.attr("tabindex", '-1').trigger('focus');
},200);
})
</script>