css3实现的六边形蜂窝状图片(自适应)

所属分类:UI-悬停

 13550  165  查看评论 (0)
分享到微信朋友圈
X
css3实现的六边形蜂窝状图片(自适应) ie兼容10

更新时间:2020-01-02 22:13:12

//页面渲染
var str = ''
for (var i = 0; i < 19; i++) {
    str += '<div >' +
        '<div >' +
        '<img  src="./images/amherst.png">' +
        '<span ></span>' +
        '<div >内容</div>' +
        '</div>' +
        '</div>'
};
$('.imgBox').html(str);
//显示效果
$('.imgBox>.hex').hover(function(e) {
    $(this).parent().find('.img').css('opacity', .2);
    $(this).siblings('.hex').find('.mark').hide();
    $(this).parent().find('.text_box').hide();
    $(this).find('.img').css('opacity', 1);
    $(this).find('.mark').show();
    $(this).find('.text_box').show();
    var domLeft = e.target.offsetParent.offsetLeft;
    var domLeft = e.target.x;
    var winWidth = document.body.clientWidth;
    var markWidth = $(this).find('.text_box').width();
    if (winWidth - domLeft <= markWidth) {
        $(this).find('.text_box').css({
            left: 'unset',
            right: '114%'
        });
    };
}, function() {
    $(this).parent().find('.img').css('opacity', 1);
    $(this).parent().find('.mark').hide();
    $(this).parent().find('.text_box').hide();
})
相关插件-悬停

C3经过动效

各种C3鼠标经过动效
  悬停
 34917  498

CSS3圆形图片鼠标经过旋转效果

CSS3圆形图片鼠标经过旋转效果,图片上有简短标题和说明,兼容主流浏览器
  悬停
 32943  424

CSS3实现超酷的鼠标悬停效果

CSS3实现超酷的鼠标悬停效果
  悬停
 41883  592

JS超酷图片翻动展示效果

JS超酷图片翻动展示效果
  悬停
 36959  589

讨论这个项目(0)回答他人问题或分享插件使用方法奖励jQ币 评论用户自律公约

😃
  • 😀
  • 😉
  • 😥
  • 😵
  • 😫
  • 😘
  • 😡
  • 👍
  • 🌹
  • 👏
  • 🍺
  • 🍉
  • 🌙
  • 💖
  • 💔
😃
  • 😀
  • 😉
  • 😥
  • 😵
  • 😫
  • 😘
  • 😡
  • 👍
  • 🌹
  • 👏
  • 🍺
  • 🍉
  • 🌙
  • 💖
  • 💔
取消回复