$xml = '<CurrencyRateListAnswer>
<Result>
<Content>
<Item FirstCode="USD" SecondCode="RUB">69.966015</Item>
<Item FirstCode="CNY" SecondCode="KZT">50.799100</Item>
<Item FirstCode="RUB" SecondCode="KZT">4.859019</Item>
<Item FirstCode="USD" SecondCode="KZT">323.777331</Item>
<Item FirstCode="RUB" SecondCode="CNY">0.091096</Item>
<Item FirstCode="USD" SecondCode="CNY">6.070173</Item>
</Content>
</Result>
</CurrencyRateListAnswer>';
$dom = new DOMDocument('UTF-8');
$dom->preserveWhiteSpace = false;
$dom->loadXML($xml);
$xpath = new DOMXPath($dom);
$query = $xpath->query('//Item[@FirstCode="USD" and @SecondCode="KZT"]');
echo $query->item(0)->nodeValue; // 323.777331
$currency = simplexml_load_file("test.xml");
foreach($currency->Result->Content as $v){
$valuta = $v->Item;
foreach($valuta as $val){
if($val['SecondCode']=='KZT'&&$val['FirstCode']=='USD'){
echo $val;
}
}
}
var timesArray = [];
$('.menu').hover(
function()
{
var id = jQuery.data(this);
timesArray[id] = setTimeout(function() {
//Показываем меню
$(this).css({'display' : 'block'});
timesArray[id] = "";
}, 500);
},
function()
{
var id = jQuery.data(this);
//Скрываем меню
$(this).css({'display' : 'none'});
if (timesArray[id])
{
clearTimeout(timesArray[id]);
}
}
);
т.е, если пользователь убрал курсор мышки с элемента меню, то она не появилось.
.menu .submenu {
opacity: 0; /* По умолчанию скрываем подменю */
visibility: hidden;
transition-property: opacity, visibility; /* Задаем какие свойства анимировать */
transition-duration: .3s, .3s; /* Задаем продолжительность анимации для каждого свойства */
transition-delay: .15s, .15s; /* Задаем задержку анимации для каждого свойства */
}
.menu .menu-item:hover .submenu {
opacity: 1; /* Показываем подменю при ховере */
visibility: visible;
}
;(function($){
$(function(){
$(document.head).append(
$('<script/>', {
'type' : 'text/javascript',
'src' : '//static.sprosikupi.ru/js/widget/sprosikupi.bootstrap.js'
}).on('load', function(){
$('div.spk-good-rating').each(function(){
if($(this).find('span.spk-rating-count').text() != '(0)'){
// $(this).append();
}
});
})
);
});
})(jQuery);
document.querySelector("#input").addEventListener("blur", function() {
// спрятать блок
}, false);