微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

HTML – 如何从社交媒体缩略图中排除Jumbotron图像?

每当我的博客文章被共享时,缩略图首先自动成为jumbotron图像,而不是认为博客文章图像:

enter image description here

enter image description here

视图

<%= image_tag "galli-walking.jpg",alt: "Conquering life and goal challenges so we can get the most out of life.",class: "main-image" %>
<div class="blog-text">
  <div class="blog-paragraph">
    A DAILY BLOG ABOUT MY<br>
    journey & LIFESTYLE
  </div>
  <%= render 'subscribes/subscribe.html.erb' %>
</div>
<%= link_to @post.title,blog_path(@post) %>
<%= simple_format(@post.body,{},{:sanitize => false}) %>

解决方法

尝试将此标记添加到< head>< / head>

<Meta property="og:image" content="<%= image_path('your_image') %>" />

从share使用中排除图像的可能解决方案是使用带有CSS background-image属性的div.代替

<%= image_tag "galli-walking.jpg",class: "main-image" %>

使用

<div style="background-image: url('galli-walking.jpg'); width:Xpx; height:Xpx;></div>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐