پیش‌نمایش زنده
کد HTML
<button class="button">
  <p class="text">Follow me</p>
  <svg
    viewBox="0 0 16 16"
    fill="currentColor"
    height="16"
    width="16"
    class="svg"
  >
    <path
      d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z"
    ></path>
  </svg>
</button>
کد CSS
.button {
  background-color: #fff;
  border: 1px solid #0077b5;
  padding: 10px;
  position: relative;
  width: fit-content;
  transition: 0.5s;
  font-size: 17px;
  border-radius: 0.4em;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.button .text {
  position: relative;
  margin: 0;
  padding: 0;
  transition: 0.5s;
  color: #0077b5;
  white-space: nowrap;
  pointer-events: none;
}

.button .svg {
  pointer-events: none;
  position: absolute;
  transform-origin: 50% 50%;
  transform: translateY(-50%) translateX(100px);
  top: 50%;
  right: 10px;
  margin: 0;
  padding: 0;
  opacity: 0;
  transition-duration: 0.5s;
  transition-delay: 0;
  height: 20px;
  width: 20px;
  fill: #fff;
}

.button:hover .text {
  color: #fff;
}

.button:hover .svg {
  opacity: 1;
  transition-delay: 0.3s;
  transition-duration: 0.3s;
  transform: translateY(-50%) translateX(0px);
}

.button:hover {
  background-color: #0077b5;
  padding-right: 40px;
}
نوع: button
تاریخ ایجاد: 2026/06/05
آخرین بروزرسانی: 2026/06/05