Jump to content
  • 0

Поменять border родителя при фокусе дочернего input


ekkl
 Share

Question

Нужно помять border родителя при фокусе дочернего элемента

http://jsbin.com/pixut/10/edit?css,output

Пробовал так, не получается.

Без js это возможно?

form span {  display: inline-block;  font-size: 18px;  line-height: 1;  background-color: #fff;  padding: 6px 2px 6px 36px;  margin: 20px;  border: 1px solid #666;}form input {  border: none;  width: 360px;  padding: 0;  margin-right: 0px;  font-size: 24px;  color: #737373;  transition: color 0.2s, border-color 0.2s;  display: inline-block;}form input:focus {  color: black;}span<input:focus{border:1px solid blue;
Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

 

Нужно помять border родителя при фокусе дочернего элемента. Без js это возможно?

 

Сложно даже представить, как это можно сделать без JS.

 

Можно вот как-то так заморочиться, но имхо, я бы таке делал на JS. Там кода-то 5 секунд, а надёжность железнобетонная.

  • Like 1
Link to comment
Share on other sites

  • 0

psywalker, пожалуй, я прислушаюсь к вашему мнению и сделаю на js.

Zepto(function($){  $('input').on('focus', function(){    $(this).parent('span').addClass('focus');  });  $('input').on('blur', function(){    $(this).parent('span').removeClass('focus');  });});

Нельзя ли этот код сделать немного изящнее?

Edited by ekkl
Link to comment
Share on other sites

  • 0

psywalker, пожалуй, я прислушаюсь к вашему мнению и сделаю на js.

Zepto(function($){  $('input').on('focus', function(){    $(this).parent('span').addClass('focus');  });  $('input').on('blur', function(){    $(this).parent('span').removeClass('focus');  });});

Нельзя ли этот код сделать немного изящнее?

Не знаю, может как-то так попробовать на чистом жс. Но, имхо, ничего страшного и раздутого в этом и вашем коде нет.

  • Like 1
Link to comment
Share on other sites

  • 0

psywalker, пожалуй, я прислушаюсь к вашему мнению и сделаю на js.

Zepto(function($){  $('input').on('focus', function(){    $(this).parent('span').addClass('focus');  });  $('input').on('blur', function(){    $(this).parent('span').removeClass('focus');  });});

Нельзя ли этот код сделать немного изящнее?

 

Ну если очень хочется, то можно.

Zepto(function($){  $('input').on('focus', function(){    $(this).parent('span').toggleClass('focus');  });});
Link to comment
Share on other sites

  • 0

Кстати, единственное, чтобы я подправил, это название класса "focus", ибо он не несёт в себе никакой понятной информации. Что скрывается за этим классом, мне лично непонятно. Я бы пошёл в сторону того, что именно делает этот класс, что он изменяет и т.д. + если вдруг на сайте появится ещё один элемент, который должен будет как-то видоизменяться при фокусе, то тогда будет совсем нехорошо. Не бойтесь длины и количества символов класса, главное качество:)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy