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

所属分类:UI-悬停

 13208  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();
})
相关插件-悬停

响应式网站图标

悬停变换效果
  悬停
 33777  368

纯CSS3 可感知方向 3D盒子翻转动画(原创)

感应鼠标进入方向,向不同的方向翻转
  悬停
 23736  336

jQuery鼠标悬停图文展示效果

网站常用效果,jQuery鼠标悬停图文展示
  悬停
 17000  261

12种CSS3 hover效果插件

非常好看实用的CSS3的hover效果, 用transition 、amination 制造好看及实用的交互体验
  悬停
 59544  488

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

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