html - CSS 文本悬停和过渡效果

标签 html css

我正在尝试弄清楚如何应用悬停效果 4http://miketricking.github.io/dist/ .

我能够在 jfiddle 上想出这个测试,https://jsfiddle.net/34aaqh70/

我也不知道如何让它自动响应。

如果有人知道解释这种效果的视频,请分享!

我的代码:

*------ Basic Setup ------*/ * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: white;
  color: #fff;
  font-family: 'Raleway', 'Lato', 'Arial', sans-serif;
  font-weight: normal;
  font-size: 20px;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.clearfix {
  zoom: 1
}
.clearfix:after {
  content: '.';
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}
.row {
  max-width: 1140px;
  margin: 0 auto;
}
/*------ Dividers ------*/

.divider {
  width: 25%;
  height: 30px;
  border-bottom: 1px solid rgba(89, 89, 89, 0.65);
  text-align: center;
  margin: auto;
  margin-bottom: 4%;
}
.divider span {
  font-size: 200%;
  background-color: white;
  padding: 0 10px;
}
/*------ DV BOX ------*/

.dv-box {
  padding-bottom: 5%;
}
/*------ Donation ------*/

.donate {
  padding-top: 5%;
  background-color: white;
}
.donate-content {
  color: grey;
  text-align: center;
}
.donate h1 {
  margin-bottom: 0%;
}
.donate-content .description {
  margin-top: 0%;
}
.donate-content p {
  padding-left: 5%;
  padding-right: 5%;
}
.donate img {
  width: 50%;
  height: auto;
  opacity: 1;
}
.donate img:hover {
  opacity: .7;
}
/*------ Volunteer ------*/

.volunteer {
  padding-top: 5%;
  background-color: white;
  padding-bottom: 5%;
}
.volunteer-content {
  color: grey;
  text-align: center;
}
.volunteer h1 {
  margin-bottom: -.5%;
}
.volunteer-content .description {
  margin-top: 0%;
}
.volunteer-content p {
  padding-left: 5%;
  padding-right: 5%;
}
.volunteer img {
  width: 60%;
  height: auto;
  opacity: .9;
}
.volunteer img:hover {
  opacity: 0.7;
}
<html lang="en">

<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js">

</head>

<body>


  <div class="row dv-box">

    <!--Donate-->
    <div class="col-md-6">
      <section class="donate" id="donate">
        <div class="donate-content">
          <h1>Donate</h1>
          <div class="divider">
            <span><i class="fa fa-paw" aria-hidden="true"></i></span>
          </div>
          <div class="col-lg-12 description">
            <p>We are always looking for people to help us!</p>
            <p>Click on the image below, to fill out the application form</p>
            <br>
            <a href="#">
              <img src="http://i.imgur.com/SDtdEQE.png" alt="">
            </a>
          </div>

        </div>
      </section>
    </div>




    <!--Volunteer-->
    <div class="col-md-6">
      <section class="volunteer" id="volunteer">
        <div class="volunteer-content">
          <h1>Volunteer</h1>
          <div class="divider">
            <span><i class="fa fa-paw" aria-hidden="true"></i></span>
          </div>
          <div class="col-lg-12 description">
            <p>We are always looking for people to help us!</p>
            <p>Click on the image below, to fill out the application form</p>
            <a href="#">
              <img src="http://i.imgur.com/Z5nGc0D.png" target="_blank" alt="form">
            </a>
          </div>
        </div>
      </section>
    </div>

  </div>
</body>

</html>

最佳答案

看起来你的问题是你有一个固定高度/宽度的图像,它位于一个设置为 100% 的 div 中。试试下面的代码。

https://jsfiddle.net/nLd80s6f/

我将图像元素的宽度更改为 100%,并调整叠加元素的填充和边距以响应图像。我还将整个图标包裹在一个额外的 div(类“wrapper”)中并将宽度设置为 80%。这只是为了让图标更接近您的原始大小。如果您在开发工具中将其关闭,您就会明白我添加它的原因。

要使此图标完全响应,您需要添加媒体查询以在断点处缩小字体。如果您对如何做到这一点有疑问,欢迎您提问:)

<div class="wrapper">
  <div class="col-lg-3 col-md-4 col-sm-6 col-xs-12">
    <div class="hovereffect">
      <img class="img-responsive" src="http://i.imgur.com/TqiQO5M.png" alt="">
      <div class="overlay">

        <a class="info" href="#">Donate</a>
      </div>
    </div>
  </div>
</div>

.wrapper {
  width: 80%;
}

.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.hovereffect img {
  display: block;
  position: relative;
  width: 100%;
}

.hovereffect .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  border: solid #00ffffff;
  border-radius: 50%;
  box-shadow: 0 0 5px #fff;
  ;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.hovereffect:hover .overlay {
  background-color: rgba(48, 152, 157, 0.4);
}

.hovereffect a.info {
  font-size: 400%;
  width: 80%;
  height: 80%;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: transparent;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-weight: normal;
  margin: 10%;
  padding: 30% 10%;
}

.hovereffect:hover a.info {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

关于html - CSS 文本悬停和过渡效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42151701/

相关文章:

html - CSS移动导航没有垂直居中,但是前面的元素都不错

javascript - 为什么我的 Canvas 上的图像在没有文本覆盖的情况下被下载?

php - 如何仅使用 HTML 和 CSS 为 elgg 设置主题?

html - 有没有办法在 C# MVC 中呈现两个局部 View ,使它们并排出现在一个 View 中?

jquery - 需要使用 .css() Jquery 函数应用这些样式,需要帮助

javascript - 如何使用多个按钮打开模式?

html - 有没有人再为 Dublin Core 烦恼了?

jquery - 使用 jQuery 添加带有文本和链接按钮的 div

html - 将左侧框文本环绕右侧 float ,保持标记语义,IE>=8

css - 展开 svg 选项卡,因为文本在不拉伸(stretch)边的情况下展开